Created
September 18, 2018 15:56
-
-
Save WebReflection/52f5bab2fe540007da49994b1a5d4c87 to your computer and use it in GitHub Desktop.
This file contains 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
/*! (c) Andrea Giammarchi - ISC */ | |
const Rel = typeof Map === 'undefined' ? | |
function () { | |
const k = [], v = []; | |
return { | |
has: value => -1 < k.indexOf(value), | |
get: value => v[k.indexOf(value)], | |
set: value => { | |
const i = k.indexOf(value); | |
v[i < 0 ? (k.push(value) - 1) : i] = value; | |
} | |
}; | |
} : | |
Map | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment