Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Date grab provides a thin functional wrapper for getting Date object properties.
var grab = require('date-grab');
var countdown = new Date('July 1, 2015');
var year = grab('year')
// year(countdown) === 2015
var date = grab('date')
// date('December 22, 2015') === 22
var utcHours = grab('hours', { utc: true })
// utcHours(countdown) === 7(PST)
var monthYear = grab(['month', 'year'])
// monthYear(countdown) === { month: 6, year: 2015 }
Date grab creates a function that gets date property, wraps standard Date
object functions. property should be a String or String Array and config should be an Object.
More thorough documentation on Dates can be found at MDN, but here is a basic conversion chart.
grab | date |
---|---|
grab('time')(date) | date.getTime() |
grab('timezone')(date) | date.getTimezoneOffset() |
grab('year')(date) | date.getYear() |
grab('month')(date) | date.getMonth() |
grab('date')(date) | date.getDate() |
grab('day')(date) | date.getDay() |
grab('hours')(date) | date.getHours() |
grab('minutes')(date) | date.getMinutes() |
grab('seconds')(date) | date.getSeconds() |
grab('milliseconds')(date) | date.getMilliseconds() |
Setting utc
to true
will use UTC instead of local date functions.
var now = new Date()
var utcHours = grab('hours', { utc: true })
utcHours(now) === now.getUTCHours() // true
FAQs
Functional wrapper for getting date properties
We found that date-grab 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.