@stheine/helpers
v1.2.1
Published
# Use
Readme
stheine/helpers
Use
npm install @stheine/helperseslint.config.js
import eslintConfig from '@stheine/helpers/eslint.config';
export default [
...eslintConfig,
];logger
import {logger} from '@stheine/helpers';
logger.info('Startup');sendMail
import {sendMail} from '@stheine/helpers';
await sendMail({
to: '[email protected]',
subject: `Test mail`,
html: `<html>Eine test mail</html>`,
});