Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
elemental-string-format
Advanced tools
Can be used standalone, though this library was developed to add missing functionality into the Elemental Low-code platform.
This library provides the ability to format strings in the same way as String.Format in .NET.
Basic usage:
const stringFormat = require("elemental-string-format");
process.env.LANG = 'en_GB';
console.log(
[
// general
// positional arguments - The first value is: The
stringFormat("{0} {1}: {0}", "The", "first value is"),
// left padded alignment - padded
stringFormat("{0,-10}", "padded"),
// right padded alignment - world hello
stringFormat("{0,10}hello", "world"),
// numbers
// currency, supports decimal places {0:c4} - £3.14
stringFormat("{0:c}", 3.14),
// fixed point, defaults to 6 places if no arg given - 1.2346
stringFormat("{0:f4}", 1.23456),
// zero padded number - 0012
stringFormat("{0:d4}", 12),
// exponential - -1.05e+003
stringFormat("{0:e2}", -1052.0329112756),
// general number format - 123.5
stringFormat("{0:G4}", 123.4546),
// human natural - 1,234,567,890.00
stringFormat("{0:N}", 1234567890),
// percentage - 12%
stringFormat("{0:P}", 0.12),
// round trip number - 1.23
stringFormat("{0:R}", 1.23),
// hexadecimal - 00ff
stringFormat("{0:x4}", 255),
// dates/times
// short date format - 20/01/2020 UK, 1/20/2020 USA
stringFormat("{0:d}", new Date()),
// long date format - Wednesday, January 1, 2020
stringFormat("{0:D}", new Date()),
// full date short time - Wednesday, January 1, 2020 1:34 PM
stringFormat("{0:f}", new Date()),
// full date long time - Wednesday, January 1, 20202 1:34:45 PM
stringFormat("{0:F}", new Date()),
// year month - January 2020
stringFormat("{0:Y}", new Date()),
// day month - January 1
stringFormat("{0:M}", new Date()),
// universal sortable - 01-01-2020 13:34:45Z
stringFormat("{0:u}", new Date()),
// short time - 1:34 PM
stringFormat("{0:t}", new Date()),
// long time - 1:34:45 PM
stringFormat("{0:T}", new Date()),
// RFC1123 - Wed, 1 Jan 2020 13:34:45
stringFormat("{0:R}", new Date()),
// round trip
stringFormat("{0:O}", new Date()),
// general short time - 20/01/2020 1:34 PM
stringFormat("{0:g}", new Date()),
// general long time - 20/01/2020 1:34:45 PM
stringFormat("{0:G}", new Date()),
].join("\n")
);
FAQs
String formatting
The npm package elemental-string-format receives a total of 1 weekly downloads. As such, elemental-string-format popularity was classified as not popular.
We found that elemental-string-format demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.