mirror of
https://github.com/nodejs/node.git
synced 2025-08-18 07:08:50 +02:00

PR-URL: https://github.com/nodejs/node/pull/48514 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
12 lines
412 B
JavaScript
12 lines
412 B
JavaScript
// warning: extremely hot code path.
|
|
// This has been meticulously optimized for use
|
|
// within npm install on large package trees.
|
|
// Do not edit without careful benchmarking.
|
|
const normalizeCache = Object.create(null)
|
|
const { hasOwnProperty } = Object.prototype
|
|
module.exports = s => {
|
|
if (!hasOwnProperty.call(normalizeCache, s)) {
|
|
normalizeCache[s] = s.normalize('NFD')
|
|
}
|
|
return normalizeCache[s]
|
|
}
|