Collect.js es un contenedor fluido y conveniente para trabajar con arreglos y objetos. función whenNotEmpty()
Instalación: Instale el módulo Collect.js usando el siguiente comando:
npm install --save collect.js
Sintaxis:
collection.whenNotEmpty(callback)
Parámetros: esta función toma solo un parámetro, es decir, la función de devolución de llamada que se ejecuta si la colección no está vacía.
Valor de retorno: esta función devuelve el nuevo objeto de colección.
Ejemplo 1: nombre de archivo-index.js
Javascript
// Requiring module const collect = require('collect.js') // User defined collection var myCollection = [ 'Good Morning', 'Good Evening', 'Good Afternoon' ] // Creating collection object const collection = collect(myCollection); // Function call for single insertion collection.whenNotEmpty(item => item.push('Good Night')); // Printing collection console.log(collection.all());
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
[ 'Good Morning', 'Good Evening', 'Good Afternoon', 'Good Night' ]
Ejemplo 2: nombre de archivo-index.js
Javascript
// Requiring module const collect = require('collect.js') // User defined collection var myCollection = ['One', 'Two', 'Three'] // Creating collection object const collection = collect(myCollection); // Function call for multiple insertion collection.whenNotEmpty((item) => { item.push('Four') item.push('Five') item.push('Six') }); // Printing collection console.log(collection.all());
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
[ 'One', 'Two', 'Three', 'Four', 'Five', 'Six' ]
Referencia: https://collect.js.org/api/whenNotEmpty.html
Publicación traducida automáticamente
Artículo escrito por gouravhammad y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA