inheritable
v0.0.1
Published
[](https://github.com/yjl9903/inheritable/actions/workflows/ci.yml)
Readme
inheritable
Installation
npm i inheritableUsage
import { inherit } from 'inheritable'
const o1 = { a: 1 }
const o2 = inherit(o1, { b: 2 })
o1.a = 0
console.log(o2.a) // 0License
MIT License © 2025 XLor
