UNPKG

willcore.ui

Version:

Simple, Fast And Powerful Client-Side HTML UI Framework.

18 lines (16 loc) 336 B
class _dataScope { constructor() { this.bindable = null; } hasBindable(){ return !!this.bindable; } setBindable(bindable) { this.bindable = bindable; } removeBindable(){ this.bindable = null; } } const dataScope = new _dataScope(); export { dataScope };