UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

15 lines (11 loc) 384 B
// @flow import logger from '../logger' const deprecationsReported: { [string]: boolean } = {} export default function deprecated(name: string, deprecationInfo: string): void { if (!deprecationsReported[name]) { deprecationsReported[name] = true logger.warn( `DEPRECATION: ${name} is deprecated. ${deprecationInfo} See changelog & docs for more info.`, ) } }