Commit 6fda5660 authored by Nikolay Gromov's avatar Nikolay Gromov

Убрал функцию подсчёта съедаемой памяти

parent 7189f749
......@@ -2,14 +2,6 @@
/* eslint-disable no-console */
'use strict';
// Проверка количества съедаемой памяти
// setInterval(function(){ // eslint-disable-line
// let memory = process.memoryUsage()
// let date = new Date();
// console.log(`[${addZero(date.getHours())}:${addZero(date.getMinutes())}:${addZero(date.getSeconds())}]`, 'Memory usage (heapUsed):', (memory.heapUsed / 1024 / 1024).toFixed(2) + 'Mb');
// }, 1000 * 10);
// function addZero(i) { return (i < 10) ? i = "0" + i : i;}
// Пакеты, использующиеся при обработке
const { series, parallel, src, dest, watch, lastRun } = require('gulp');
const fs = require('fs');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment