summaryrefslogtreecommitdiffstats
path: root/node_modules/pidtree/index.js
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
commite06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch)
tree55713f725f77b44ebfec86e4eec3ce33e71458ca /node_modules/pidtree/index.js
downloadwebsite_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip
api, login, auth
Diffstat (limited to 'node_modules/pidtree/index.js')
-rw-r--r--node_modules/pidtree/index.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/node_modules/pidtree/index.js b/node_modules/pidtree/index.js
new file mode 100644
index 0000000..2e2a92e
--- /dev/null
+++ b/node_modules/pidtree/index.js
@@ -0,0 +1,46 @@
+'use strict';
+
+function pify(fn, arg1, arg2) {
+ return new Promise(function(resolve, reject) {
+ fn(arg1, arg2, function(err, data) {
+ if (err) return reject(err);
+ resolve(data);
+ });
+ });
+}
+
+// The method startsWith is not defined on string objects in node 0.10
+// eslint-disable-next-line no-extend-native
+String.prototype.startsWith = function(suffix) {
+ return this.substring(0, suffix.length) === suffix;
+};
+
+var pidtree = require('./lib/pidtree');
+
+/**
+ * Get the list of children pids of the given pid.
+ * @public
+ * @param {Number|String} pid A PID. If -1 will return all the pids.
+ * @param {Object} [options] Optional options object.
+ * @param {Boolean} [options.root=false] Include the provided PID in the list.
+ * @param {Boolean} [options.advanced=false] Returns a list of objects in the
+ * format {pid: X, ppid: Y}.
+ * @param {Function} [callback=undefined] Called when the list is ready. If not
+ * provided a promise is returned instead.
+ * @returns {Promise.<Object[]>} Only when the callback is not provided.
+ */
+function list(pid, options, callback) {
+ if (typeof options === 'function') {
+ callback = options;
+ options = undefined;
+ }
+
+ if (typeof callback === 'function') {
+ pidtree(pid, options, callback);
+ return;
+ }
+
+ return pify(pidtree, pid, options);
+}
+
+module.exports = list;