UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

13 lines (12 loc) 245 B
import { TString } from '../base/TString.js'; export class TJavaScript extends TString { tName() { return 'JavaScript'; } example() { return '(()=>{})();'; } isPotentiallyLong() { return true; } }