HEX
Server: LiteSpeed
System: Linux ws4.angoweb.net 5.14.0-611.13.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 11 04:57:59 EST 2025 x86_64
User: tswangoe (2287)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open
Upload Files
File: //usr/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js
const hasIntl = typeof Intl === 'object' && !!Intl
const Collator = hasIntl && Intl.Collator
const cache = new Map()

const collatorCompare = (locale, opts) => {
  const collator = new Collator(locale, opts)
  return (a, b) => collator.compare(a, b)
}

const localeCompare = (locale, opts) => (a, b) => a.localeCompare(b, locale, opts)

const knownOptions = [
  'sensitivity',
  'numeric',
  'ignorePunctuation',
  'caseFirst',
]

const { hasOwnProperty } = Object.prototype

module.exports = (locale, options = {}) => {
  if (!locale || typeof locale !== 'string')
    throw new TypeError('locale required')

  const opts = knownOptions.reduce((opts, k) => {
    if (hasOwnProperty.call(options, k)) {
      opts[k] = options[k]
    }
    return opts
  }, {})
  const key = `${locale}\n${JSON.stringify(opts)}`

  if (cache.has(key))
    return cache.get(key)

  const compare = hasIntl
    ? collatorCompare(locale, opts)
    : localeCompare(locale, opts)
  cache.set(key, compare)

  return compare
}