0.1.10 • Published 2 years ago

@depla/reka-types v0.1.10

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

@depla/reka-types

Package for creating and interacting with Reka data types (ie: the AST and the View)

Installation

npm install @depla/reka-types

Creating a new Type

To create a new type, use the builder function which will return a new Type instance:

import * as t from '@depla/reka-types';

// Using the builder function
const literal = t.literal({
    value: 0
});
// or manually: new Literal({ value: 0 })

Checking an instance's type

import * as t from '@depla/reka-types';

const literal = t.literal({ value : 0 });

console.log(literal instanceof t.Literal); // true
console.log(literal instanceof t.Expression); // true
console.log(literal instanceof t.RekaComponent); // false