dev.js 516 Bytes
// // const spider = require('./spider-buyers.js');

// // spider();
// const dayjs = require('dayjs')

// const time = '2019-05-09 11:09:40';
// const otime = '2019-05-09 11:10:40';

// const time1 = dayjs(time).startOf('minute');
// const time2 = dayjs(otime).startOf('minute');

// console.log(time1.format('YYYY-MM-DD HH:mm:ss'), time2.format('YYYY-MM-DD HH:mm:ss'))
// console.log(time1.isBefore(time2))

const _ = require('lodash')

_.each([1,2,3], id => {

  console.log(id)
  if (id >1) {
    return ;
  }
})