From 60803b270c06ec369c9a88236beee2d07076a76c Mon Sep 17 00:00:00 2001 From: kyle shockey Date: Sun, 22 Mar 2020 19:41:29 -0400 Subject: [PATCH] add note to `baseUrl` function --- src/execute/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/execute/index.js b/src/execute/index.js index 98ff85a87..4754b64c7 100755 --- a/src/execute/index.js +++ b/src/execute/index.js @@ -268,6 +268,7 @@ export function buildRequest(options) { const stripNonAlpha = str => (str ? str.replace(/\W/g, '') : null) +// be careful when modifying this! it is a publicly-exposed method. export function baseUrl(obj) { const specIsOAS3 = isOAS3(obj.spec)