Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1 KB

readme.md

File metadata and controls

52 lines (41 loc) · 1 KB

ow-my-class

Validate a plain object with a class and make it type-safe!

Build Status codecov NPM download Supported by BoostIO

Usage

npm i ow ow-my-class
import Omc from 'ow-my-class'
import ow from 'ow'

class User {
  @Omc(ow.string.minLength(5))
  name: string
}

// Return false
const result = Omc.isValid(
  {
    name: 'yolo'
  },
  User
)

// Throw ValidationError
Omc.validate(
  {
    name: 'yolo'
  },
  User
)

// Convert a plain object into a User instance
const user = Omc.transform(
  {
    name: 'yolo yolo'
  },
  User
)

License

MIT