forked from FoundKeyGang/FoundKey
Extract hasDuplicates function
This commit is contained in:
parent
17c8969fd2
commit
b3455bf1cb
2 changed files with 2 additions and 4 deletions
|
@ -4,6 +4,7 @@
|
|||
* Module dependencies
|
||||
*/
|
||||
import validate from '../../validator';
|
||||
import hasDuplicates from '../../../common/has-duplicates';
|
||||
import parse from '../../../common/text';
|
||||
import { Post, isValidText } from '../../models/post';
|
||||
import User from '../../models/user';
|
||||
|
@ -15,10 +16,6 @@ import notify from '../../common/notify';
|
|||
import event from '../../event';
|
||||
import config from '../../../conf';
|
||||
|
||||
function hasDuplicates(array) {
|
||||
return (new Set(array)).size !== array.length;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a post
|
||||
*
|
||||
|
|
1
src/common/has-duplicates.ts
Normal file
1
src/common/has-duplicates.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export default (array: any[]) => (new Set(array)).size !== array.length;
|
Loading…
Reference in a new issue