Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
12345678910111213 |
- /* eslint-disable no-console */
- 'use strict'
-
- let printed = {}
-
- module.exports = function warnOnce(message) {
- if (printed[message]) return
- printed[message] = true
-
- if (typeof console !== 'undefined' && console.warn) {
- console.warn(message)
- }
- }
|