0.3.0 • Published 5 months ago
ouyes v0.3.0
gentle-warning
Warn users about anything but only once
Installation
npm install ouyes
Usage example
import { gentleWarning } from 'ouyes';
const warn = gentleWarning('App');
function doSomething() {
warn('Hello! I will warn you only once!');
}
doSomething(); // will warn you
doSomething(); // no warnings
doSomething(); // no warnings