Implement edit

This commit is contained in:
Chi Vinh Le
2018-09-11 00:15:27 +02:00
parent 195d61d104
commit a36d944e4a
21 changed files with 494 additions and 36 deletions
+1
View File
@@ -2,3 +2,4 @@ export { default as timeout } from "./timeout";
export { default as animationFrame } from "./animationFrame";
export { default as pascalCase } from "./pascalCase";
export { default as oncePerFrame } from "./oncePerFrame";
export { default as isBeforeDate } from "./isBeforeDate";
+3
View File
@@ -0,0 +1,3 @@
export default function isBeforeDate(date: string | number | Date) {
return new Date() < new Date(date);
}