/
home
/
infinitibizsol
/
.trash
/
node_modules.4
/
cloudinary-core
/
src
/
util
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/node_modules.4/cloudinary-core/src/util/firstNotNull.js
/** * Return the first argument whose value is not null * @param args * @returns {*} */ let firstNotNull = function firstNotNull(...args) { while(args && args.length > 0) { let next = args.shift(); if( next != null){ return next; } } return null; }; export default firstNotNull;
Copyright ©2k19 -
Hexid
|
Tex7ure