Skip to content

asnowc/wokao

Repository files navigation

wokao 是一个参数校验库

API documentation

使用

import { checkType, checkTypeCopy, CheckTypeError, ExpectType, InferExpect, optional } from "@asla/wokao";

checkType(null, "null");
checkType(2, "number");
checkType({}, "object");

try {
  checkType(null, "object"); // null 不是 object
} catch (e) {
  if (e instanceof CheckTypeError) {
    //...
  }
}

const expectObject = {
  name: "string",
  age: "number",
  phone: "string",
  info: optional({
    address: "string",
  }),
  site: (input) => {
    if (typeof input !== "string") throw new CheckTypeError("string", typeof input);
    return new URL(input);
  },
} satisfies ExpectType;

/*
{
    name: string;
    age: number;
    phone: string;
    info: {  address: string;  } | undefined;
    site: URL;
}
*/
type ExpectObject = InferExpect<typeof expectObject>;
const value = checkTypeCopy({ name: "123", age: 12 }, "object");
console.log(value);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published