(text)
| 1 | let warned = {} |
| 2 | |
| 3 | export function warn(text) { |
| 4 | if (!warned[text]) { |
| 5 | warned[text] = true |
| 6 | if (typeof console !== 'undefined' && console.warn) { |
| 7 | console.groupCollapsed('Nano Stores: ' + text) |
| 8 | console.trace('Source of deprecated call') |
| 9 | console.groupEnd() |
| 10 | } |
| 11 | } |
| 12 | } |