diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2020-05-07 20:33:01 +0200 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2020-05-23 03:12:06 +0200 |
commit | a416692e93054ad66af315f41647d36611e9ad03 (patch) | |
tree | acbdd5c4f7a9ad0c3daac9da31ce2d7e4d3d278b /doc/api/deprecations.md | |
parent | f217b2dfb08f6c1b64ae7cc05680161eadc4545b (diff) | |
download | node-new-a416692e93054ad66af315f41647d36611e9ad03.tar.gz |
repl: remove deprecated repl.memory function
This removes the memory function. It is deprecated for a long time
while not being really helpful being exposed. Thus, it is removed
to improve maintainability of the REPL module.
Signed-off-by: Ruben Bridgewater <ruben@bridgewater.de>
PR-URL: https://github.com/nodejs/node/pull/33286
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/deprecations.md')
-rw-r--r-- | doc/api/deprecations.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 7879aa7d99..59232512d4 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -1696,12 +1696,15 @@ file descriptors. ### DEP0082: `REPLServer.prototype.memory()` <!-- YAML changes: + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/33286 + description: End-of-Life. - version: v9.0.0 pr-url: https://github.com/nodejs/node/pull/16242 description: Runtime deprecation. --> -Type: Runtime +Type: End-of-Life `REPLServer.prototype.memory()` is only necessary for the internal mechanics of the `REPLServer` itself. Do not use this function. |