Skip to content

Instantly share code, notes, and snippets.

@WebReflection
Created September 18, 2018 15:56
Show Gist options
  • Save WebReflection/52f5bab2fe540007da49994b1a5d4c87 to your computer and use it in GitHub Desktop.
Save WebReflection/52f5bab2fe540007da49994b1a5d4c87 to your computer and use it in GitHub Desktop.
/*! (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