@kno2/bluebutton 0.6.5 → 0.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: "dependabot jira ticket sync"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '0 0 * * *'
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions: read-all
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
dependabot-scan:
|
|
12
|
+
name: Scan for issues
|
|
13
|
+
uses: Kno2/action-workflows/.github/workflows/push-alerts-to-jira-ubuntu.yml@master
|
|
14
|
+
with:
|
|
15
|
+
jira_project_key: DEP
|
|
16
|
+
secrets: inherit
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
14.16.1
|
package/build/bluebutton.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["bluebutton"] = factory();
|
|
8
8
|
else
|
|
9
9
|
root["bluebutton"] = factory();
|
|
10
|
-
})(self,
|
|
10
|
+
})(self, () => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
13
13
|
|
|
@@ -775,7 +775,7 @@ function stripWhitespace(str) {
|
|
|
775
775
|
return str;
|
|
776
776
|
}
|
|
777
777
|
|
|
778
|
-
return str.
|
|
778
|
+
return str.trim();
|
|
779
779
|
}
|
|
780
780
|
|
|
781
781
|
;
|
|
@@ -956,7 +956,7 @@ var unescapeSpecialChars = function unescapeSpecialChars(s) {
|
|
|
956
956
|
return s;
|
|
957
957
|
}
|
|
958
958
|
|
|
959
|
-
return s.replace(
|
|
959
|
+
return s.replace(/\</g, '<').replace(/\>/g, '>').replace(/\"/g, '"').replace(/\'/g, "'").replace(/\&/g, '&');
|
|
960
960
|
};
|
|
961
961
|
/*
|
|
962
962
|
* Retrieve the element's attribute value. Example:
|
|
@@ -1128,7 +1128,7 @@ var root = window || __webpack_require__.g,
|
|
|
1128
1128
|
|
|
1129
1129
|
if ((typeof process === "undefined" ? "undefined" : _typeof(process)) === 'object' && Object.prototype.toString.call(process) === '[object process]') {
|
|
1130
1130
|
isNode = true;
|
|
1131
|
-
xmldom = __webpack_require__(
|
|
1131
|
+
xmldom = __webpack_require__(435);
|
|
1132
1132
|
doc = new xmldom.DOMImplementation().createDocument();
|
|
1133
1133
|
}
|
|
1134
1134
|
|
|
@@ -1944,7 +1944,7 @@ function run(json, template, testingMode) {
|
|
|
1944
1944
|
/*
|
|
1945
1945
|
* ...
|
|
1946
1946
|
*/
|
|
1947
|
-
var _ = __webpack_require__(
|
|
1947
|
+
var _ = __webpack_require__(517);
|
|
1948
1948
|
|
|
1949
1949
|
module.exports = {
|
|
1950
1950
|
run: run
|
|
@@ -5123,19 +5123,19 @@ module.exports = function (ccda, data) {
|
|
|
5123
5123
|
|
|
5124
5124
|
/***/ }),
|
|
5125
5125
|
|
|
5126
|
-
/***/
|
|
5126
|
+
/***/ 517:
|
|
5127
5127
|
/***/ ((module) => {
|
|
5128
5128
|
|
|
5129
5129
|
"use strict";
|
|
5130
|
-
module.exports = require("lodash")
|
|
5130
|
+
module.exports = require("lodash");
|
|
5131
5131
|
|
|
5132
5132
|
/***/ }),
|
|
5133
5133
|
|
|
5134
|
-
/***/
|
|
5134
|
+
/***/ 435:
|
|
5135
5135
|
/***/ ((module) => {
|
|
5136
5136
|
|
|
5137
5137
|
"use strict";
|
|
5138
|
-
module.exports = require("xmldom")
|
|
5138
|
+
module.exports = require("xmldom");
|
|
5139
5139
|
|
|
5140
5140
|
/***/ })
|
|
5141
5141
|
|