Skip to content

edouardmisset/utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

46 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Utils

๐Ÿš€ Powerful TypeScript utility toolkit for modern web developers

Install

Deno

In Deno you can either import code inside a file directly or go through an import map.

Using imports (import map)

Add it to your imports:

deno add @edouardmisset/utils

Then import it in you files:

// The entire lib
import * as mod from '@edouardmisset/utils'

// Only selected function
import { capitalize } from '@edouardmisset/utils'

Directly in file

Import it in your file:

// The entire lib
import * as mod from 'jsr:@edouardmisset/utils'

// Or fix a specific version
import * as mod from 'jsr:@edouardmisset/[email protected]'

// Only selected function
import { capitalize } from 'jsr:@edouardmisset/[email protected]'

npm / yarn / pnpm / bun

# npm
npx jsr add @edouardmisset/utils

# yarn
yarn dlx jsr add @edouardmisset/utils

# pnpm
pnpm dlx jsr add @edouardmisset/utils

# bun
bunx jsr add @edouardmisset/utils

Usage

capitalize('hello') // returns "Hello"

Issues

Feel free to report any issues on GitHub ๐Ÿ›

PR welcome ๐Ÿ™‚

License

MIT

Credits

This project draws inspiration and learns from various resources and projects that have contributed to the JavaScript and TypeScript developer community.

I am indebted to these projects and communities for their insights, code examples, and continuous support, which have shaped the development of this utility package.

Thank you โญ๏ธ