mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-08 03:55:53 +08:00
update
This commit is contained in:
21
node_modules/array-differ/index.d.ts
generated
vendored
Normal file
21
node_modules/array-differ/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
Create an array with values that are present in the first array but not additional ones.
|
||||
|
||||
@param array - The array to compare against.
|
||||
@param values - The arrays with values to be excluded.
|
||||
@returns A new array of filtered values.
|
||||
|
||||
@example
|
||||
```
|
||||
import arrayDiffer = require('array-differ');
|
||||
|
||||
arrayDiffer([2, 3, 4], [3, 50]);
|
||||
//=> [2, 4]
|
||||
```
|
||||
*/
|
||||
declare function arrayDiffer<ValueType>(
|
||||
array: readonly ValueType[],
|
||||
...values: (readonly ValueType[])[]
|
||||
): ValueType[];
|
||||
|
||||
export = arrayDiffer;
|
||||
Reference in New Issue
Block a user