https://github.com/imufeng/second
https://github.com/imufeng/second
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/imufeng/second
- Owner: iMuFeng
- License: mit
- Created: 2022-07-14T07:00:50.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-14T07:57:27.000Z (almost 4 years ago)
- Last Synced: 2024-06-21T13:05:51.291Z (about 2 years ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Second
[](https://github.com/iMuFeng/second/actions)
[](https://github.com/iMuFeng/second/blob/master/go.mod)
[](https://pkg.go.dev/github.com/iMuFeng/second)
[This module](https://pkg.go.dev/github.com/iMuFeng/second) is a Go implementation of [ms](https://github.com/vercel/ms).
# Install
```
go get github.com/iMuFeng/second
```
## Examples
```go
second.Parse('2 days') // 172800
second.Parse('1d') // 86400
second.Parse('10h') // 36000
second.Parse('2.5 hrs') // 9000
second.Parse('2h') // 7200
second.Parse('1m') // 60
second.Parse('5s') // 5
second.Parse('1y') // 31557600
second.Parse('-3 days') // -259200
second.Parse('-1h') // -3600
```
## License
[MIT License](./LICENSE)