mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
47befffc53
Deprecate _linklist and add test to confirm internal linklist and public _linklist are the same. PR-URL: https://github.com/nodejs/node/pull/3078 Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
'use strict';
|
|
|
|
const msg = require('internal/util').printDeprecationMessage;
|
|
|
|
module.exports = require('internal/linkedlist');
|
|
msg('_linklist module is deprecated. Please use a userland alternative.');
|