mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8ff2501a04
Adds a `module.isPreloading` property that is `true` only during the preload (`-r`) phase of Node.js bootstrap. This provides modules an easy, non-hacky way of knowing if they are being loaded during preload. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/36263 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
3 lines
63 B
JavaScript
3 lines
63 B
JavaScript
const assert = require('assert');
|
|
assert(module.isPreloading);
|