hl-npm-test
v1.0.2
Published
npm上传测试
Downloads
4
Readme
hl-npm-test
Installing
npm install hl-npm-test --save
Example
const _hl = require('hl-npm-test')
// Checks if `value` is classified as an `Array` object.
console.log(_hl.isArray([])) // true
// Converts all elements in `array` into a string separated by `separator`.
console.log(_hl.join([1, 2, 3], ',')) // 1,2,3