Advertisement
Krammy

Get Note ID script

Dec 22nd, 2021
1,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var last_time = null;
  2.  
  3. function get_note_ID() {
  4.     // get current time
  5.     now = moment().startOf('minute');
  6.  
  7.     if (last_time != null && now.isSameOrBefore(last_time))
  8.     {
  9.         // add one minute to moment
  10.         now = last_time.add(1, "m");
  11.     }
  12.     last_time = now;
  13.    
  14.     return now.format("YYYYMMDDHHmm");
  15. }
  16.  
  17. module.exports = get_note_ID;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement