From 0b014a7962789b2d8f2cf0b6311f40667aecd62c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 3 Feb 2021 10:06:45 -0800 Subject: [PATCH] chore: add JSDoc returns information (#33) --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 789dbbf..ef65a47 100644 --- a/index.js +++ b/index.js @@ -14,6 +14,7 @@ var escaped = /\\([\!\*\?\|\[\]\(\)\{\}])/g; * @param {string} str * @param {Object} opts * @param {boolean} [opts.flipBackslashes=true] + * @returns {string} */ module.exports = function globParent(str, opts) { var options = Object.assign({ flipBackslashes: true }, opts);