@stheine/helpers
v1.1.2
Published
# Use
Downloads
218
Readme
stheine/helpers
Use
npm install @stheine/helpers
eslint.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>`,
});