251127:1700 Frontend Start Build
This commit is contained in:
17
frontend/.ignored_node_modules/tailwindcss/src/util/defaults.js
generated
Normal file
17
frontend/.ignored_node_modules/tailwindcss/src/util/defaults.js
generated
Normal file
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user