
Security News
TC39 Advances 11 Proposals for Math Precision, Binary APIs, and More
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
date-names
Advanced tools
Repository of localized month and day names. Usable in Node.js or in the browser.
Install via npm:
% npm install date-names
The default locale is en
(English). Thus, a require('date-names')
implicitly does require('date-names/en')
.
var names = require('date-names');
names.months // => ['January', 'February', 'March', ...]
names.abbreviated_months // => ['Jan', 'Feb', 'Mar', 'Apr', ...]
names.days // => ['Sunday', 'Monday', 'Tuesday', ...]
names.abbreviated_days // => ['Sun', 'Mon', 'Tue', 'Wed', ...]
names.am // => 'AM'
names.pm // => 'PM'
You can fetch a different translation by requiring a specific locale:
var names = require('date-names/de');
names.months // => ['Januar', 'Februar', 'März', ...]
names.abbreviated_months // => ['Jan', 'Feb', 'Mär', 'Apr', ...]
names.days // => ['Sonntag', 'Montag', 'Dienstag', ...]
names.abbreviated_days // => ['So', 'Mo', 'Di', 'Mi', ...]
names.am // => 'vormittags'
names.pm // => 'nachmittags'
Brazilian Portuguese (pt-br), Czech (cs), Danish (da), Dutch (nl), English (en), Finnish (fi), French (fr), German (de), Spanish (es), Russian (ru), Slovak (sk), Swedish (sv) and Turkish (tr) are currently the only supported locales. Pull requests welcome.
Here's a quick guide:
make install
.make test
.Released under The MIT License.
FAQs
Repository of localized month and day names
The npm package date-names receives a total of 7,137 weekly downloads. As such, date-names popularity was classified as popular.
We found that date-names 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
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.