我在自定义grunt任务中遇到错误。下面我发布了一个与问题相关的简单测试用例:
Gruntfile.js
module.exports = function( grunt ){
grunt.task.registerTask( 'endsWith', 'Test of string.prototype.endsWith', function(){
var value = grunt.option('value');
grunt.log.writeln( typeof value );
grunt.log.writeln( value.endsWith( 'bar' ) );
})
};
测试
> grunt endsWith --value=foobar
Running "endsWith" task
string
Warning: Object foobar has no method 'endsWith' Use --force to continue.
Aborted due to warnings.
Execution Time (2016-02-12 16:15:19 UTC)
Total 12ms
就像grunt无法识别String.proptotype.endsWith函数一样。这是正常的吗?
编辑:我正在使用节点v0.10.4
答案 0 :(得分:6)
.endsWith
is an ES6 feature并未在Node.js v0.10.4中实现。
使用.endsWith
升级Node.js或add in a polyfill:
String.prototype.endsWith = function(suffix) {
return this.indexOf(suffix, this.length - suffix.length) !== -1;
};
答案 1 :(得分:0)
如果您使用的是旧版本的节点,则可以使用String.match方法。
替换
grunt.log.writeln(value.endsWith('bar'));
与
grunt.log.writeln( value.match("bar$") );
完整代码
module.exports = function( grunt ){
grunt.task.registerTask( 'endsWith', 'Test of string.prototype.endsWith', function(){
var value = grunt.option('value');
grunt.log.writeln( typeof value );
grunt.log.writeln( value.match("bar$") );
})
};