Your IP : 216.73.216.79


Current Path : /var/www/html/dynaweb-starter/node_modules/tailwindcss/src/util/
Upload File :
Current File : /var/www/html/dynaweb-starter/node_modules/tailwindcss/src/util/defaults.js

export function defaults(target, ...sources) {
  for (let source of sources) {
    for (let k in source) {
      if (!target?.hasOwnProperty?.(k)) {
        target[k] = source[k]
      }
    }

    for (let k of Object.getOwnPropertySymbols(source)) {
      if (!target?.hasOwnProperty?.(k)) {
        target[k] = source[k]
      }
    }
  }

  return target
}