Collect.js是用于处理数组和对象的流利且便捷的包装器。这个unlessEmpty()函数当集合不为空时执行回调函数。
安装:使用以下命令安装Collect.js模块:
npm install --save collect.js
用法:
collection.unlessEmpty(callback)
参数:此函数仅接受一个参数,即如果集合不为空则执行的回调函数。
返回值:此函数返回新的集合对象。
范例1:Filename-index.js
Javascript
// Requiring module
const collect = require('collect.js')
// User defined collection
var myCollection = [1, 2]
// Creating collection object
const collection = collect(myCollection);
// Callback execution since collection
// object is not empty
collection.unlessEmpty(item => item.push(3));
// Printing collection
console.log(collection.all());
使用以下命令运行index.js文件:
node index.js
输出:
[ 1, 2, 3 ]
示例2:Filename-index.js
Javascript
// Requiring module
const collect = require('collect.js')
// User defined collection
var myCollection = []
// Creating collection object
const collection = collect(myCollection);
// No callback execution since
// collection is not empty
collection.unlessEmpty((item) => {
item.push(1)
item.push(2)
});
// Printing collection
console.log(collection.all());
使用以下命令运行index.js文件:
node index.js
输出:
[ ]
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Collect.js unlessEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。