
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
excel-style-dataformatter
Advanced tools
npm install excel-style-dataformatter
bower install excel-style-dataformatter
import DataFormatter from 'excel-style-dataformatter';
const dataFormatter = new DataFormatter();
const result = dataFormatter.format('99', 'Number', 'Currency');
import DataFormatter from 'excel-style-dataformatter';
import ru from 'excel-style-dataformatter/lib/ru';
// Create instance with defined locales
const options = { locales: [ru] };
const dataFormatter = new DataFormatter(options);
// Switch locale
dataFormatter.setLocale('ru');
const result = dataFormatter.format('99', 'Number', 'Currency');
<script src="excel-style-dataformatter/lib/index.js"></script>
<script src="excel-style-dataformatter/lib/locales/ru.js"></script>
<script>
// Create instance
var dataFormatter = new window.DataFormatter({
locales: [window.DataFormatter_ru]
});
// Default locale
document.write(dataFormatter.format('123.44', 'Number', 'Currency').value);
// Switch to russian
dataFormatter.setLocale('ru');
document.write(dataFormatter.format('123.44', 'Number', 'Currency').value);
</script>
<script>
require(['excel-style-dataformatter/lib/index', 'excel-style-dataformatter/lib/locales/ru'], function() {
require(['DataFormatter', 'DataFormatter_ru'], function(DataFormatter, ru) {
// Create instance
var dataFormatter = new DataFormatter({
locales: [ru]
});
// Default locale
document.write(dataFormatter.format('99', 'Number', 'Currency').value);
// Switch to russian
dataFormatter.setLocale('ru');
document.write(dataFormatter.format('99', 'Number', 'Currency').value);
});
});
</script>
locale {string} - default locale
locales {string} - defined locales
UTCOffset {number|null} - UTC offset for dates in minutes
transformCode {function}
debug {boolean}
.format(value, type, format)
.defineLocales(locales)
.setLocale(locale)
.setUTCOffset(offset)
FAQs
Excel-Style Javascript Data Formatter
The npm package excel-style-dataformatter receives a total of 9,070 weekly downloads. As such, excel-style-dataformatter popularity was classified as popular.
We found that excel-style-dataformatter 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.