(str: string)
| 53 | } |
| 54 | |
| 55 | export function deprecateLog(str: string) { |
| 56 | if (__DEV__) { |
| 57 | // Not display duplicate message. |
| 58 | outputLog('warn', 'DEPRECATED: ' + str, true); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | export function deprecateReplaceLog(oldOpt: string, newOpt: string, scope?: string) { |
| 63 | if (__DEV__) { |
no test coverage detected
searching dependent graphs…