Skip to main content
Module

x/eta/polyfills.ts

Embedded JS template engine for Node, Deno, and the browser. Lighweight, fast, and pluggable. Written in TypeScript
Very Popular
Go to Latest
File
export var promiseImpl = Promise;
export function getAsyncFunctionConstructor(): Function { return async function () {}.constructor;}
export function trimLeft(str: string): string { return str.trimLeft();}
export function trimRight(str: string): string { return str.trimRight();}