Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
vague-time
Advanced tools
A tiny JavaScript library that formats precise time differences as a vague/estimated time, e.g. '3 months ago', 'just now' or 'in 2 hours'.
A tiny JavaScript library that formats precise time differences as a vague/estimated time, e.g. '3 months ago', 'just now' or 'in 2 hours'.
npm install vague-time
To use vagueTime.js in a browser environment, you can either clone the git repository like so:
git clone git@github.com:philbooth/vagueTime.js.git
Or use one of the growing number of package managers, such as Component, Jam, Ender or Bower.
var vagueTime = require('vague-time');
<script type="text/javascript" src=".../vagueTime.js/src/vagueTime.min.js"></script>
vagueTime.js exports a single public function, get
,
which returns a vague time string
based on the argument(s) that you pass it.
The arguments are passed as properties on a single options object.
The optional property from
is a timestamp
denoting the origin point from which the vague time will be calculated,
defaulting to Date.now()
if undefined.
The optional property to
is a timestamp
denoting the target point to which the vague time will be calculated,
defaulting to Date.now()
if undefined.
The optional property units
is a string,
denoting the units that the from
and to
timestamps are specified in,
either 's'
for seconds or 'ms'
for milliseconds,
defaulting to 's'
if undefined.
Essentially, if to
is less than from
the returned vague time will
indicate some point in the past. If to
is greater than from
it will
indicate some point in the future.
vagueTime.get({
from: 60,
to: 0
}); // returns '1 minute ago'
vagueTime.get({
from: 0,
to: 60
}); // returns 'in 1 minute'
vagueTime.get({
from: 7200,
to: 0
}); // returns '2 hours ago'
vagueTime.get({
from: 0,
to: 7200
}); // returns 'in 2 hours'
vagueTime.get({
from: 345600,
to: 0
}); // returns '4 days ago'
vagueTime.get({
from: 0,
to: 345600
}); // returns 'in 4 days'
vagueTime.get({
from: Date.now(),
units: 'ms'
}); // returns 'now'
The build environment relies on
Node.js,
NPM,
Jake,
JSHint,
Mocha,
Chai and
UglifyJS.
Assuming that you already have Node.js and NPM set up,
you just need to run npm install
to install all of the dependencies as listed in package.json
.
The unit tests are in test/vagueTime.js
.
You can run them with the command npm test
or jake test
.
FAQs
A tiny library that formats precise time differences as a vague/fuzzy time.
The npm package vague-time receives a total of 97 weekly downloads. As such, vague-time popularity was classified as not popular.
We found that vague-time 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.