Lines Matching refs:normalize
14 tr.normalize = normalize;
51 function normalize(result) { function
76 }).then(tr.normalize).nodeify(cb);
145 return tr.normalize(_this._tr.render(str, options, locals)).body;
178 return tr.normalize(this._tr.renderFile(filename, options, locals)).body;
220 return tr.normalize(this._tr.compileClient(str, options));
245 return tr.normalize(this._tr.compileFileClient(filename, options));
249 return tr.normalize(this._tr.compileClient(tr.readFileSync(filename, 'utf8'), options));
286 return tr.normalize(this._tr.render(str, options, locals));
293 return tr.normalize({body: body, dependencies: compiled.dependencies});
324 return tr.normalize(this._tr.renderFile(filename, options, locals));
328 return tr.normalize(this._tr.render(tr.readFileSync(filename, 'utf8'), options, locals));
331 … return tr.normalize({body: compiled.fn(locals || options), dependencies: compiled.dependencies});