版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

13 rader
413 B

  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. }
  11. return normalizeCache[s]
  12. }