Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
11
Frontend-Learner/node_modules/yaml/browser/dist/log.js
generated
vendored
Normal file
11
Frontend-Learner/node_modules/yaml/browser/dist/log.js
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
function debug(logLevel, ...messages) {
|
||||
if (logLevel === 'debug')
|
||||
console.log(...messages);
|
||||
}
|
||||
function warn(logLevel, warning) {
|
||||
if (logLevel === 'debug' || logLevel === 'warn') {
|
||||
console.warn(warning);
|
||||
}
|
||||
}
|
||||
|
||||
export { debug, warn };
|
||||
Loading…
Add table
Add a link
Reference in a new issue