UNPKG

@entwurfhaus/vite-vanilla-ts-module

Version:

A starter vanilla-ts (extended) template that began with Vite 3.x, prepared for writing node utility libraries in typescript. This starter is meant to provide rapid node package development and publishing onto npm.

9 lines (8 loc) 203 B
const e = (o, s) => o + s, l = (o, s) => o - s, c = (o, s) => o * s, n = (o, s) => o / s, a = (o) => `Hello, ${o}!`; export { e as add, n as divide, a as hello, c as multiply, l as subtract };