1.0.0 • Published 2 years ago

with-flatten v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Install

$ npm i with-flatten

API

Table of Contents

withFlatten

src/index.ts:67-107

Mixins ctor with parent and camelCase flattens and observes its properties mapping them back to the actual values. Best used in conjuction with https://github.com/stagas/with-properties

const Foo = withFlatten(
  SomeParent,
  class {
    deep = {
      foo: 2,
    }
  }
)
const foo = new Foo()
foo.deepFoo = 4
expect(foo.deep.foo).toBe(4)

Parameters

Contribute

Fork or edit and submit a PR.

All contributions are welcome!

License

MIT © 2022 stagas