Skip to content

Commit d37637a

Browse files
committed
new
1 parent 3aa277c commit d37637a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coders.js",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "An Advanced Package Manager for discord.js",
55
"main": "./src/index.js",
66
"types": "./typings/index.d.ts",

src/features/utils.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ function StringToMs(string) {
5757
* const { ms } = require('coders.js');
5858
* console.log(ms(86400000));
5959
* // Output: 1d
60-
*/
61-
60+
*/
6261
function ms(ms) {
6362
if (typeof ms !== 'number') throw new Error('ms must be a number');
6463
let seconds = Math.floor(ms / 1000);

0 commit comments

Comments
 (0)