mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
15eaba98a1
The process.emitWarning() API should be used for printing deprecation warning messages rather than directly using the internal/util#printDeprecationMessage PR-URL: https://github.com/nodejs/node/pull/8166 Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
'use strict';
|
|
|
|
module.exports = require('internal/linkedlist');
|
|
process.emitWarning(
|
|
'_linklist module is deprecated. Please use a userland alternative.',
|
|
'DeprecationWarning');
|