UNPKG

@ribajs/core

Version:

Core module of Riba.js

10 lines (8 loc) 287 B
import { DataElement } from "../types/index.js"; import { Binder } from "../binder.js"; export class MustacheTextBinder extends Binder<string, DataElement> { static key = "mustache-text"; routine(node: DataElement, value: string) { node.data = value != null ? value : ""; } }