61e72ecbccdf785d3f70a1bd79159d0c9dc36d7ca8c101d18d985bc3a7cf8e48a375cf6dc4917c63925dea45353c10702d1afd45d97ff44f3aa09a59442aa2-exec 148 B

123456789
  1. 'use strict';
  2. const internals = {};
  3. module.exports = function (timeout) {
  4. return new Promise((resolve) => setTimeout(resolve, timeout));
  5. };