/opt/canhelp/node_modules/nanostores/warn
Edit: /opt/canhelp/node_modules/nanostores/warn/index.js (290B)
let warned = {}
export function warn(text) {
if (!warned[text]) {
warned[text] = true
if (typeof console !== 'undefined' && console.warn) {
console.groupCollapsed('Nano Stores: ' + text)
console.trace('Source of deprecated call')
console.groupEnd()
}
}
}