Skip to content

KSXGitHub/deno_simple_type_assert

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Type Assert

Simple type assertion library for Deno.

Usage

import assert from 'https://deno.land/x/simple_type_assert/index.ts'
assert<number>(0, 1, 2) // => passed
assert<number>('string') // => error

License

MIT © Hoàng Văn Khải