transcend-formats
Advanced tools
Comparing version
@@ -17,2 +17,6 @@ /** | ||
function imageLinkFormatter(cell, row, linkFunc){ | ||
return "<a href='" + linkFunc(row) + "'><img class='tiny-img' src='"+cell+"'/></a>" | ||
} | ||
function durationFormatter(cell, row){ | ||
@@ -19,0 +23,0 @@ let time = cell / 1000; |
{ | ||
"name": "transcend-formats", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "General formatting helper functions", | ||
@@ -5,0 +5,0 @@ "main": "js/transcend-formats.js", |
# transcend-formats | ||
General formatting helper functions | ||
## Source | ||
Source code can be found at js/transcend-formats.js | ||
## Installation | ||
``` | ||
npm install transcend-formats | ||
``` | ||
## Use | ||
``` | ||
const tf = require('transcend-formats') | ||
// Format Dates | ||
const date = new Date(); | ||
console.log(tf.dateFormatter(date)); | ||
// Format Duration | ||
const duration = 340230 // in ms | ||
console.log(tf.durationFormatter(duration)) | ||
// Format Identity | ||
const input = "test"; | ||
console.log(tf.identityFormatter(input)) | ||
imageFormatter | ||
``` |
2262
35.45%35
9.38%34
1033.33%