1.0.1 • Published 3 years ago

@components-studio/divriots.demo-user-event v1.0.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Template ES Module

This is a template for creating ES Module

Table of Contents

Install

This project uses npm. Go check them out if you don't have them locally installed.

$ npm install --save template-module-ts
// using ES6 modules
import { countLetter } from "@wcd/template-module-ts";

or

<script type="module" src="https://unpkg.com/@wcd/template-module-ts"></script>

Usage

import { countLetter } from "@wcd/template-module-ts";

const hello_world_count = countLetter("Hello world");

// get count of a particular letter
hello_world_count["w"];