npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

trim-dates

v0.1.0

Published

Trim (intersect) a date range whith a specific day (or custom range).

Downloads

8

Readme

trim-dates

Intersect a date range whith a specific day (or custom range).

Usefull to get any duration that fit (or not) inside a specific day.

You provide a day and a range of two dates, those will be trimmed to fit inside this day. Sometime you could just want to intersect two date ranges, in this case just specify the range needed.

trim-dates works with your environment (browser or node) local timezone. If you need to work with date given in other timezones, check the options in Timezone chapter.

example

process.env.TZ = 'Europe/London' // for demo purpose only...

var trimDates = require('trim-dates')
var day = new Date('2017-01-01')
var range = [ 
  new Date('2017-01-01T09:00:00'),
  new Date('2017-02-01T16:00:00')
]
var intersection = trimDates(day, range)

console.log(intersection)

// => [ 2017-01-01T09:00:00.000Z, 2017-01-01T23:59:59.999Z ]

timezones

the problem

JavaScript only know use current local timezone. For example, executed in +11:00 timezone, the previous example would return:

var day = new Date('2017-01-01')
var range = [ 
  new Date('2017-01-01T09:00:00'),
  new Date('2017-02-01T16:00:00')
]
var intersection = trimDates(day, range)

console.log(intersection)
// => [ 2016-12-31T22:00:00.000Z, 2017-01-01T12:59:59.999Z ] // because this is diplayed in UTC

On the other hand this is what we expect, as the computing was done within the same local timezone.

intersection[0].getDate()
// => 1 // oh!

intersection[0].getHours()
// => 9 // good!

intersection[1].getHours() + ':' + intersection[1].getMinutes()
// => '23:59' // yeah!

Unfortunately, sometimes you could want to work with other timezone, which could to lead to unexpected behaviors.

For example:

var day = new Date('2017-01-01T00:00:00-05:00')
var range = [
  new Date('2017-01-01T09:00:00-05:00'),
  new Date('2017-01-02T16:00:00-05:00')
]

console.log(trimDates(day, range))
// => null 
// no intersection in +11:00 timezone!!

This is due to the day range creation not being timezone aware.

trim-dates-tz

To circumvent and ease the use of non local timezone, a small wrapper file is provided. It allows to specify a timezone offset in minutes to work properly with the given dates.

Note: this offset is equivalent to Date.prototype.getTimezoneOffset(). Which means 2017-01-01T10:00:00+02:00 for a french timezone should be given a -120 offset.

Finaly, by defaults the returned range is in local timezone, so the above date would gives 10 when calling getHours(). This is usualy convenient, but it modifies the date value. If your goal is to keep original, add revertTimezone: true to options.

example

var trimDatesTz = require('trim-dates/trim-dates-tz')
var day = new Date('2017-01-01T00:00:00-05:00')
var range = [
  new Date('2017-01-01T09:00:00-05:00'),
  new Date('2017-01-02T16:00:00-05:00')
]
trimDatesTz(day, range, { timezoneOffset: 5 * 60 })

other options

There is other options to work with non local timezone:

  • define the range in the required timezone by yourself:
var day = [
  new Date('2017-01-01T00:00:00-05:00'),
  new Date('2017-01-01T23:59:00-05:00')
]
var range = [
  new Date('2017-01-01T09:00:00-05:00'),
  new Date('2017-01-02T16:00:00-05:00')
]
trimDates(day, range, { timezoneOffset: 5 * 60 })

// => [ 2017-01-01T14:00:00.000Z, 2017-01-02T04:59:00.000Z ] // local timezone anyway, but meaningfull result!
  • remove timezone informations from all of your dates by yourself, and work in local time as the browser/nodejs does.

Something like:

var day = new Date('2017-01-01T00:00:00-05:00'.splice(0, 19))

Will work as well with your local timezone.

api

var trimDates = require('trim-dates')

var intersection = trimDates(dayDate, dateRange, [opts])

Return an array of two dates if an intersection is found, or null. All provided dates couldbe either Date object or timestamp.

  • dayDate - the day to intersect your range with. Optionaly you can provide your own range array: [startDate, endDate].
  • dateRange - the date range to be trimmed to fit inside the provided day. Hqave to be ordered: [startDate, endDate].
  • opts.inclusive - default false. If you want to include the last millisecond, so the day range is from current day 00:00 to next day 00:00.

If using trim-dates-tz, you get a few more options:`

var trimDatesTz = require('trim-dates/trim-dates-tz')

var intersection = trimDatesTz(dayDate, dateRange, [opts])

Signature is similar to trim-dates. The result is stil a Date array in local time. Here are the added options:

  • opts.timezoneOffset - default: 0. Timezone offset in minutes from UTC time. **This is similar to js getTimezoneOffset() but inverse of momentjs utcOffset().
  • opts.revertZone - default: false. In case you prefer the result to keep it's original value.
  • dayTimezoneOffset - default: null. Similat to timezoneOffset, but adapt the day if in another timezone.

license

MIT

install

npm install trim-dates