项目原始demo,不改动
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 年前
..
specs [Version] V.3.8 4 年前
.npmignore [Version] V.3.8 4 年前
LICENSE [Version] V.3.8 4 年前
README.md [Version] V.3.8 4 年前
index.js [Version] V.3.8 4 年前
package.json [Version] V.3.8 4 年前

README.md

NPM Version Build Status

coalescy

Simple function that return the first non null or undefined argument passed to it

Install

npm i --save coalescy

Usage

coalescy simply return the first non nully of the passed elements. Null if all the values are null

it works the same as

a || b

but it works on falsie values too

Example

var clsc = require('coalescy');
var obj = clsc(null, []); // obj = [];
obj = clsc(null, {}); // obj = {};
obj = clsc(null, [], {}); // obj = []; // the first non null
obj = clsc(null, undefined, 0, []) // 0