Skip to content

Latest commit

 

History

History
25 lines (24 loc) · 368 Bytes

README.md

File metadata and controls

25 lines (24 loc) · 368 Bytes

JSRTCheck

installtion

npm i RTCheck

usage

ESM

import RunTimeCheck from "RTcheck"
function app(s){
   new RunTimeCheck().CheckArgs(s,"number")
}
app("s")

CJS

var a = require('rtcheck')
function app(s){
   new a.default().CheckArgs(s,"number")
}
app("s")

info

CJS not get all the support as esm beacasue esm work on the browser