Smartly outputs content to the console.
npm install console-smart
# Add the file below to the root of the project.
// console.d.ts
declare global {
interface Console {
smart(...args: any[]): void;
}
}
export {};
import 'console-smart';
console.smart('Hello World!');
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library