Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
405 bytes
|
Line | |
---|
1 | // warning: extremely hot code path.
|
---|
2 | // This has been meticulously optimized for use
|
---|
3 | // within npm install on large package trees.
|
---|
4 | // Do not edit without careful benchmarking.
|
---|
5 | const normalizeCache = Object.create(null)
|
---|
6 | const {hasOwnProperty} = Object.prototype
|
---|
7 | module.exports = s => {
|
---|
8 | if (!hasOwnProperty.call(normalizeCache, s))
|
---|
9 | normalizeCache[s] = s.normalize('NFKD')
|
---|
10 | return normalizeCache[s]
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.