From 7ec4f8a3a5cf891c6a40ffc711a53e1432b2c0e9 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 3 Feb 2021 06:12:56 -0800 Subject: [PATCH] chore: add JSDoc @returns information --- 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);