@danielkalen/simplybind
Version:
Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.
12 lines (10 loc) • 402 B
HTML
<template>
<require from="./date-format.js"></require>
<require from="./number-format.js"></require>
${currentDate | dateFormat:'M/D/YYYY h:mm:ss a'} <br/>
${currentDate | dateFormat:'MMMM Mo YYYY'} <br/>
${currentDate | dateFormat:'h:mm:ss a'} <br/>
${netWorth | numberFormat:'$0,0.00'} <br/>
${netWorth | numberFormat:'$0.0a'} <br/>
${netWorth | numberFormat:'0.00000)'}
</template>