Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

12
pull.js
View File

@@ -1,4 +1,4 @@
import pullAll from './pullAll.js';
import pullAll from './pullAll.js'
/**
* Removes all given values from `array` using
@@ -16,14 +16,14 @@ import pullAll from './pullAll.js';
* @see pullAll, pullAllBy, pullAllWith, pullAt, remove, reject
* @example
*
* const array = ['a', 'b', 'c', 'a', 'b', 'c'];
* const array = ['a', 'b', 'c', 'a', 'b', 'c']
*
* pull(array, 'a', 'c');
* console.log(array);
* pull(array, 'a', 'c')
* console.log(array)
* // => ['b', 'b']
*/
function pull(array, ...values) {
return pullAll(array, values);
return pullAll(array, values)
}
export default pull;
export default pull