Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
moment-parseformat
Advanced tools
A moment.js plugin to extract the format of a date/time string
A moment.js plugin to extract the format of a date/time string
Load via script tag
<script src="moment.js"></script>
<script src="moment.parseFormat.js"></script>
Install using npm for node.js:
npm install --save moment-parseformat
var format = moment.parseFormat('Thursday, February 6th, 2014 9:20pm'/* , options */);
// dddd, MMMM Do, YYYY h:mma
moment().format(format); // format
var moment = require 'moment'
var parseFormat = require('moment-parseformat')
var format = parseFormat('Thursday, February 6th, 2014 9:20pm'/* , options */);
// dddd, MMMM Do, YYYY h:mma
moment().format(format); // format
Options can be passed as 2nd parameter
Type: Object
or String
parseFormat
tries to figure out the the order of day/month/year by itself
if it finds 3 numbers separated by .
, -
or /
. But if it can't, it will fallback
to preferredOrder
, which can either be set as an object to differentiate by separator,
or as a simple string.
Default value:
preferredOrder: {
'/': 'MDY',
'.': 'DMY',
'-': 'YMD'
}
Usage
parseFormat('10.10.2010', {preferredOrder: 'DMY'});
// ☛ DD.MM.YYYY
parseFormat('10.10.2010', {preferredOrder: 'MDY'});
// ☛ MM.DD.YYYY
parseFormat('10.10.2010', {preferredOrder: {
'/': 'MDY',
'.': 'DMY',
'-': 'YMD'
}});
// ☛ MM.DD.YYYY
parseFormat('10/10/2010', {preferredOrder: {
'/': 'MDY',
'.': 'DMY',
'-': 'YMD'
}});
// ☛ DD/MM/YYYY
The moment.parseFormat Plugin have been authored by Gregor Martynus, proud member of the Hoodie Community.
License: MIT
FAQs
A moment.js plugin to extract the format of a date/time string
The npm package moment-parseformat receives a total of 14,105 weekly downloads. As such, moment-parseformat popularity was classified as popular.
We found that moment-parseformat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.