array-intersection:使用严格相等进行比较,返回具有 _all_ 给定数组中存在的唯一值的数组

时间:2024-06-27 07:09:07
【文件属性】:

文件名称:array-intersection:使用严格相等进行比较,返回具有 _all_ 给定数组中存在的唯一值的数组

文件大小:6KB

文件格式:ZIP

更新时间:2024-06-27 07:09:07

JavaScript

数组交集 使用严格相等进行比较,返回具有所有给定数组中存在的唯一值的数组。 基于实施intersection 。 安装 使用 NPM 安装 使用安装 npm i array-intersection --save 使用 Bower 安装 用安装 bower install array-intersection --save 用法 var intersection = require ( 'array-intersection' ) ; intersection ( [ 'a' , 'a' , 'c' ] ) //=> ['a', 'c'] intersection ( [ 'a' , 'b' , 'c' ] , [ 'b' , 'c' , 'e' ] ) //=> ['b', 'c'] intersection ( [ 'a' , 'b' , 'c' ] , [ 'b' , 'c'


【文件预览】:
array-intersection-master
----.travis.yml(151B)
----index.js(693B)
----test.js(705B)
----package.json(1KB)
----LICENSE(1KB)
----.gitignore(251B)
----.verb.md(837B)
----README.md(2KB)
----.jshintrc(259B)
----bower.json(1KB)
----.editorconfig(366B)
----.gitattributes(237B)

网友评论