v0.8.0
Features
- Supports nullable properties (#143).
import { factory, primaryKey, nullable } from '@mswjs/data'
const db = factory({
user: {
id: primaryKey(String),
firstName: String,
age: nullable(Number)
}
})
db.create({ firstName: null }) // TypeError
db.create({ age: null }) // OK!