templateSettings
今天在看lodash的typescript定义文件时,发现有这么一处定义:
1 | declare namespace _ { |
我们看到lodash的官网上有这么一处举例:
`js
// using custom template delimiters(分隔符)
_.templateSettings.interpolate = /undefined/g;
var compiled = _.template('hello !');
compiled({ 'user': 'mustache' });
// => 'hello mustache!'