@t1ep1l0t/core
v1.2.6
Published
Collection of essential Typescript utilities.
Readme
Description
@t1ep1l0t/core is a collection of universal Typescript utilities. You can use them both in the browser and in the Node.js environment, as well as in any frontend and backend frameworks. The only thing you need is Typescript.
Usage
# Installing package
npm install @t1ep1l0t/core
# OR
yarn add @t1ep1l0t/core
# OR
bun install @t1ep1l0t/core// Import some from package
import {useLogger} from "@t1ep1l0t/core";
const data = {
name: 'Andrey',
username: 't1ep1l0t'
};
useLogger(data)
// Output => [15:48:45] - (/path/to/file:10) - {"name":"Andrey","username":"t1ep1l0t"};
useLogger(data, 'Data preview')
// Output => [15:48:45] - (Data preview) - {"name":"Andrey","username":"t1ep1l0t"};Questions
For questions and support please use the Telegram. The issue list of this repo is exclusively for bug reports and feature requests.
Stay in touch
- Author - Andrey Alekseev
- Website - https://t1ep1l0t.com
License
@t1ep1l0t/core is MIT licensed.
