Created
January 15, 2018 08:33
-
-
Save edtoken/b0ab698208038f3fed36fc220a96c076 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const uniqPrefix = (() => { | |
let START_UNIQ_PREFIX = 0 | |
const uniq = () => {} | |
uniq.toString = uniq.valueOf = () => { | |
START_UNIQ_PREFIX += 1 | |
return `uniq${START_UNIQ_PREFIX}` | |
} | |
return uniq | |
})() | |
console.log('uniqPrefix', uniqPrefix) | |
console.log('uniqPrefix', uniqPrefix) | |
console.log('uniqPrefix', uniqPrefix) | |
console.log('uniqPrefix', uniqPrefix) | |
console.log('uniqPrefix', uniqPrefix) | |
console.log('uniqPrefix', uniqPrefix) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment