Node-Red configuration
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213
  1. /* eslint-disable no-console */
  2. 'use strict'
  3. let printed = {}
  4. module.exports = function warnOnce(message) {
  5. if (printed[message]) return
  6. printed[message] = true
  7. if (typeof console !== 'undefined' && console.warn) {
  8. console.warn(message)
  9. }
  10. }