📜  Collect.js takeUntil() 方法

📅  最后修改于: 2022-05-13 01:56:39.422000             🧑  作者: Mango

Collect.js takeUntil() 方法

takeUntil() 方法用于返回集合中的项目,直到给定的回调返回 true。如果未找到给定值或回调从未返回 true,则 takeUntil() 方法将返回集合中的所有项目。

句法:

collect.takeUntil()

参数: collect() 方法采用一个参数,该参数转换为集合,然后将 takeUntil() 方法应用于它。

返回值:此方法返回集合中的项目。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的示例说明了 collect.js 中的 takeUntil() 方法:

示例 1:文件名:index.js

Javascript
// Requiring the module
const collect = require('collect.js'); 
    
// Sample array
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]; 
    
// Creating collection
const collection = collect(arr); 
  
// Function call
const result = collection
    .takeUntil(item => item >= 7);
  
// Printing the result object
let newObject = result.all();
console.log(newObject);


Javascript
// Requiring the module
const collect = require('collect.js'); 
    
// Sample array
let arr = [2, 4, 5, 6, 7, 8, 9]; 
    
// Creating collection
const collection = collect(arr); 
  
// Function call
const result = collection
    .takeUntil(item => item == 7);
  
// Printing the result object
let newObject = result.all();
console.log(newObject);


使用以下命令运行index.js文件:

node index.js

输出:

[1, 2, 3, 4, 5, 6]

示例 2:文件名:index.js

Javascript

// Requiring the module
const collect = require('collect.js'); 
    
// Sample array
let arr = [2, 4, 5, 6, 7, 8, 9]; 
    
// Creating collection
const collection = collect(arr); 
  
// Function call
const result = collection
    .takeUntil(item => item == 7);
  
// Printing the result object
let newObject = result.all();
console.log(newObject);


使用以下命令运行index.js文件:

node index.js

输出:

[2, 4, 5, 6]