在JS版本的Gruntfiles中经常会出现类似这样的东西。 我正试着用Coffeescript重写它。
require('load-grunt-config')(grunt);
你会怎么用CoffeeScript写的?我甚至不确定你叫什么这样的东西。
答案 0 :(得分:0)
你只需要一个功能,然后马上执行它
require('load-grunt-config')(grunt)
或
require('load-grunt-config') grunt
与coffeescript相同。
答案 1 :(得分:0)
最好写一下:
(require 'load-grunt-config') grunt
然后使用[{3}}中的父级:
require('load-grunt-config') (grunt) #This is ok
require ('load-grunt-config')(grunt) #This is what you do not want
Coffescipt是一种空白语法上可识别的语言。