各色工具函數(shù)/庫(kù),包括 Lo-Dash、Async 和 Hooker。
返回給定值的"類(lèi)型(kind)"。就像typeof
,但是其返回的是內(nèi)部的[Class](class/)
值??赡芊祷氐慕Y(jié)果是"number"
、"string"
、"boolean"
、"function"
、"regexp"
、"array"
、"date"
、"error"
、"null"
、"undefined"
和可以表示一切類(lèi)型的 "object"
。
grunt.util.kindOf(value)
返回一個(gè)新的Error實(shí)例(也可以?huà)伋觯┡c相應(yīng)的消息。如果指定的是Error對(duì)象而不是message
,則返回對(duì)象。
另外,如果為 origError
參數(shù)指定的是Error對(duì)象,并且使用 --stack
選項(xiàng)運(yùn)行Grunt,則輸出原始的Error堆棧。
grunt.util.error(message [, origError])
將換行符轉(zhuǎn)換為當(dāng)前系統(tǒng)所采用的形式(Window上是\r\n
,其他系統(tǒng)為\n
)。
對(duì)于一個(gè)給定的字符串,將其所有換行符轉(zhuǎn)換為當(dāng)前系統(tǒng)所采用的形式,然后返回一個(gè)新的字符串。(Window上是\r\n
,其他系統(tǒng)為\n
)
grunt.util.normalizelf(string)
遞歸嵌套的對(duì)象和數(shù)組,為每個(gè)非對(duì)象值執(zhí)行callbackFunction
。如果continueFunction
返回false
, 給定的對(duì)象或值將會(huì)被跳過(guò)。
grunt.util.recurse(object, callbackFunction, continueFunction)
返回被重復(fù)n
次的字符串str
。
grunt.util.repeat(n, str)
給定一個(gè)"a/b"
形式的str
,如果n
為1
,返回"a"
,否則返回"b"
。如果不能使用'/',也可以指定一個(gè)自定義的分隔符。
grunt.util.pluralize(n, str, separator)
生成一個(gè)子進(jìn)程,并跟蹤其stdout、stderr和退出碼。此方法返回子進(jìn)程的引用。當(dāng)子進(jìn)程退出時(shí),doneFunction
函數(shù)被調(diào)用。
grunt.util.spawn(options, doneFunction)
options
對(duì)象可以指定以下屬性:
var options = {
// The command to execute. It should be in the system path.
cmd: commandToExecute,
// If specified, the same grunt bin that is currently running will be
// spawned as the child command, instead of the "cmd" option. Defaults
// to false.
grunt: boolean,
// An array of arguments to pass to the command.
args: arrayOfArguments,
// Additional options for the Node.js child_process spawn method.
opts: nodeSpawnOptions,
// If this value is set and an error occurs, it will be used as the value
// and null will be passed as the error value.
fallback: fallbackValue
};
doneFunction
函數(shù)可以接收以下參數(shù):
function doneFunction(error, result, code) {
// If the exit code was non-zero and a fallback wasn't specified, an Error
// object, otherwise null.
error
// The result object is an object with the properties .stdout, .stderr, and
// .code (exit code).
result
// When result is coerced to a string, the value is stdout if the exit code
// was zero, the fallback if the exit code was non-zero and a fallback was
// specified, or stderr if the exit code was non-zero and a fallback was
// not specified.
String(result)
// The numeric exit code.
code
}
對(duì)于傳入的數(shù)組或類(lèi)數(shù)組對(duì)象,返回一個(gè)數(shù)組。對(duì)于將arguments
對(duì)象轉(zhuǎn)換為數(shù)組是非常有用的。
grunt.util.toArray(arrayLikeObject)
標(biāo)準(zhǔn)化"返回值"和"傳遞結(jié)果給回調(diào)"的函數(shù),總是傳遞一個(gè)結(jié)果給指定的回調(diào)函數(shù)。如果原始函數(shù)返回一個(gè)值,該值將即刻傳遞給回調(diào)函數(shù),,并指定為最后一個(gè)參數(shù),在所有的預(yù)定義參數(shù)之后。如果原始函數(shù)傳遞一個(gè)值給回調(diào)函數(shù),,它也會(huì)繼續(xù)照樣如此。
grunt.util.callbackify(syncOrAsyncFunction)
下面這個(gè)例子也許能夠更好的說(shuō)明:
function add1(a, b) {
return a + b;
}
function add2(a, b, callback) {
callback(a + b);
}
var fn1 = grunt.util.callbackify(add1);
var fn2 = grunt.util.callbackify(add2);
fn1(1, 2, function(result) {
console.log('1 plus 2 equals ' + result);
});
fn2(1, 2, function(result) {
console.log('1 plus 2 equals ' + result);
});
此內(nèi)部工具庫(kù)用于解析對(duì)象中深度嵌套的屬性。
用于task執(zhí)行的內(nèi)部工具庫(kù)。
不建議使用
下面列出的所有外部工具庫(kù)已經(jīng)不再建議使用了。
請(qǐng)使用 npm 管理項(xiàng)目中對(duì)第三方工具庫(kù)的依賴(lài)。
例如,如果你需要使用 Lo-Dash,首先通過(guò) npm install lodash
安裝,然后在 Gruntfile
文件中使用即可: var _ = require('lodash');
不建議使用
Lo-Dash - 很多有用的數(shù)組、函數(shù)和對(duì)象工具方法。 Underscore.string - 很多實(shí)用的字符串工具函數(shù)。
grunt.util._.str
is available for methods that conflict with existing Lo-Dash methods.
不建議使用
Async - 對(duì)node和瀏覽器都適用的異步工具。
不建議使用
JavaScript Hooker - 用于調(diào)試和做些其他事情的鉤子(hook)函數(shù)。
更多建議: