New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

transcend-formats

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

transcend-formats - npm Package Compare versions

Comparing version

to
1.0.1

4

js/transcend-formats.js

@@ -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;

2

package.json
{
"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
```