source:
imaps-frontend/node_modules/core-js/internals/shared-key.js
Last change on this file was 79a0317, checked in by , 3 days ago | |
---|---|
|
|
File size: 210 bytes |
Line | |
---|---|
1 | 'use strict'; |
2 | var shared = require('../internals/shared'); |
3 | var uid = require('../internals/uid'); |
4 | |
5 | var keys = shared('keys'); |
6 | |
7 | module.exports = function (key) { |
8 | return keys[key] || (keys[key] = uid(key)); |
9 | }; |
Note:
See TracBrowser
for help on using the repository browser.