25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 'use strict';
-
- var isProduction = process.env.NODE_ENV === 'production';
- function warning(condition, message) {
- if (!isProduction) {
- if (condition) {
- return;
- }
-
- var text = "Warning: " + message;
-
- if (typeof console !== 'undefined') {
- console.warn(text);
- }
-
- try {
- throw Error(text);
- } catch (x) {}
- }
- }
-
- module.exports = warning;
|