From 37cdeafa2ff281a9896530bb34dc3392f1cee755 Mon Sep 17 00:00:00 2001 From: Brendan Ashworth Date: Sun, 27 Sep 2015 22:38:11 -0700 Subject: [PATCH] smalloc: remove module MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Bye bye, smalloc. I'm not sure why this was still here; it was removed in 70d1f32 and hasn't worked since. It wasn't packaged in the binary, either. Reviewed-By: Michaël Zasso Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Ben Noordhuis PR-URL: https://github.com/nodejs/node/pull/3099 --- lib/smalloc.js | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 lib/smalloc.js diff --git a/lib/smalloc.js b/lib/smalloc.js deleted file mode 100644 index 9d52e02..0000000 --- a/lib/smalloc.js +++ /dev/null @@ -1,7 +0,0 @@ -'use strict'; - -const util = require('internal/util'); - -module.exports = require('internal/smalloc'); -util.printDeprecationMessage('smalloc is deprecated. ' + - 'Use typed arrays instead.'); -- 2.7.4