UNPKG

@grindife/supamelon

Version:

Combination of supabase and watermelondb

15 lines (11 loc) 398 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.`, ) } }