Skip to main content
The Deno 2 Release Candidate is here
Learn more

ts-utils

Usage

ref. API References - deno.land/x

$ npm i @yano3nora/ts-utils
import { objectByKeys } from '@yano3nora/ts-utils'

objectByKeys([1, 2, 3], (key) => Number(key) * 10)
// => { '1': 10, '2': 20, '3': 30 }

Development

$ deno task dev

build & test

# build
$ deno task build

# link on local
$ deno task link
$ cd ../another-project
$ npm link package-name

publish

$ deno task publish:dry ${NPM_VERSION_SUB_COMMAND} # major | minor | patch
$ deno task publish:run ${NPM_VERSION_SUB_COMMAND}