Skip to content

Instantly share code, notes, and snippets.

@edtoken
Created January 15, 2018 08:33
Show Gist options
  • Save edtoken/b0ab698208038f3fed36fc220a96c076 to your computer and use it in GitHub Desktop.
Save edtoken/b0ab698208038f3fed36fc220a96c076 to your computer and use it in GitHub Desktop.
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