code stringlengths 14 2.05k | label int64 0 1 | programming_language stringclasses 7
values | cwe_id stringlengths 6 14 | cwe_name stringlengths 5 98 ⌀ | description stringlengths 36 379 ⌀ | url stringlengths 36 48 ⌀ | label_name stringclasses 2
values |
|---|---|---|---|---|---|---|---|
function disableInput(selector, status=true) {
// Add a class called disableInput in which are not disable by default
$(selector).find("input, select, button, textarea").not('[disabled]').addClass("disableInput");
// Then desable/ Enable input which are not disable by default
$(".disableInput").prop("... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function disableInput(selector, status=true) {
// Add a class called disableInput in which are not disable by default
$(selector).find("input, select, button, textarea").not('[disabled]').addClass("disableInput");
// Then desable/ Enable input which are not disable by default
$(".disableInput").prop("... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function empty(data) {
return data === "" || data === null || data === 'null';
} | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function empty(data) {
return data === "" || data === null || data === 'null';
} | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function combosVariations(options, optionIndex=0, results=[], current={}) {
var allKeys = Object.keys(options);
var optionKey = allKeys[optionIndex];
var list = options[optionKey];
list.forEach( item => {
current[optionKey] = item;
if (optionIndex + 1 < allKeys.length) {
... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function combosVariations(options, optionIndex=0, results=[], current={}) {
var allKeys = Object.keys(options);
var optionKey = allKeys[optionIndex];
var list = options[optionKey];
list.forEach( item => {
current[optionKey] = item;
if (optionIndex + 1 < allKeys.length) {
... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function tsd(num) {
return Number(num).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
} | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function tsd(num) {
return Number(num).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
} | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function setVariationPrice() {
var purchasePrice = $("#productVariationPurchasePriceSetter").val();
var salePrice = $("#productVariationSelePriceSetter").val();
var discount = $("#productVariationDiscountSetter").val();
// Set prces for specific units
var getWhereUnit = $("#SetPricesWhereUnit").va... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function setVariationPrice() {
var purchasePrice = $("#productVariationPurchasePriceSetter").val();
var salePrice = $("#productVariationSelePriceSetter").val();
var discount = $("#productVariationDiscountSetter").val();
// Set prces for specific units
var getWhereUnit = $("#SetPricesWhereUnit").va... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function getPurchaseProductList(saleid, saleRef) {
/** Hide the customer purchase list */
$("#showPurchaseList").hide();
/** Show the purchase product list */
$("#showPurchaseProductList").show();
BMS.fn.get(`customerPurchaseProductList&saleid=${saleid}`, purchaseList => {
var pu... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function getPurchaseProductList(saleid, saleRef) {
/** Hide the customer purchase list */
$("#showPurchaseList").hide();
/** Show the purchase product list */
$("#showPurchaseProductList").show();
BMS.fn.get(`customerPurchaseProductList&saleid=${saleid}`, purchaseList => {
var pu... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function updateCallLog({vm_id="", number="", duration="", status=""}="") {
$.ajax({
url: full_website_address + "/xhr/?module=customer-support&page=updateCallLog",
type: "post",
data:{
vm_id: vm_id,
number: number,
duration: duration,
sta... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
function updateCallLog({vm_id="", number="", duration="", status=""}="") {
$.ajax({
url: full_website_address + "/xhr/?module=customer-support&page=updateCallLog",
type: "post",
data:{
vm_id: vm_id,
number: number,
duration: duration,
sta... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
success: function(data, status) {
data = JSON.parse(data);
if(status == "success") {
$(".voiceMessageTerminal").append(`<li>${data.description} is starting to send...</li>`);
// Start sending to first three numbers
... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
success: function(data, status) {
data = JSON.parse(data);
if(status == "success") {
$(".voiceMessageTerminal").append(`<li>${data.description} is starting to send...</li>`);
// Start sending to first three numbers
... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
duration: Math.floor( (session.end_time.getTime() - session.start_time.getTime()) / 1000),
status: "Answered"
});
completeSession();
if( allContactBrodcasted === false ) {
// Do next call
$(document).trig... | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
duration: Math.floor( (session.end_time.getTime() - session.start_time.getTime()) / 1000),
status: "Answered"
});
completeSession();
if( allContactBrodcasted === false ) {
// Do next call
$(document).trig... | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
success: function(status, data){} | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
success: function(status, data){} | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
var completeSession = function(){
session = null;
}; | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
var completeSession = function(){
session = null;
}; | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
voiceCall.onended = function() {
BMS.fn.stopTimer(window['timer'+number]);
$(`.voiceMessageTerminal > li.${number}`).append("Played.");
session.terminate();
}; | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
voiceCall.onended = function() {
BMS.fn.stopTimer(window['timer'+number]);
$(`.voiceMessageTerminal > li.${number}`).append("Played.");
session.terminate();
}; | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
duration: Math.floor( (session.end_time.getTime() - session.start_time.getTime()) / 1000),
status: "Answered"
}); | 1 | JavaScript | CWE-829 | Inclusion of Functionality from Untrusted Control Sphere | The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere. | https://cwe.mitre.org/data/definitions/829.html | safe |
duration: Math.floor( (session.end_time.getTime() - session.start_time.getTime()) / 1000),
status: "Answered"
}); | 1 | JavaScript | CWE-352 | Cross-Site Request Forgery (CSRF) | The web application does not, or can not, sufficiently verify whether a well-formed, valid, consistent request was intentionally provided by the user who submitted the request. | https://cwe.mitre.org/data/definitions/352.html | safe |
function getIdentifierQuote(editor) {
return getModeConf(editor, "identifierQuote") || "`";
} | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function insertIdentifierQuotes(name) {
var nameParts = getText(name).split(".");
for (var i = 0; i < nameParts.length; i++)
nameParts[i] = identifierQuote +
// duplicate identifierQuotes
nameParts[i].replace(new RegExp(identifierQuote,"g"), identifierQuote+identifierQuote) +
identifierQ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function getModeConf(editor, field) {
return editor.getModeAt(editor.getCursor()).config[field] || CodeMirror.resolveMode("text/x-sql")[field]
} | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function getKeywords(editor) {
return getModeConf(editor, "keywords") || []
} | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function buildGap(dv) {
var lock = dv.lockButton = elt("div", null, "CodeMirror-merge-scrolllock");
lock.setAttribute("role", "button");
lock.setAttribute("tabindex", "0");
var lockWrap = elt("div", [lock], "CodeMirror-merge-scrolllock-wrap");
CodeMirror.on(lock, "click", function() { setScrollLoc... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function disableBrowserMagic(field, spellcheck, autocorrect, autocapitalize) {
field.setAttribute("autocorrect", autocorrect ? "on" : "off");
field.setAttribute("autocapitalize", autocapitalize ? "on" : "off");
field.setAttribute("spellcheck", !!spellcheck);
} | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
setLastCopied({lineWise: false, text: cm.getSelections()});
if (e.type == "cut") { cm.replaceSelection("", null, "cut"); }
} else if (!cm.options.lineWiseCopyCut) {
return
} else {
var ranges = copyableRanges(cm);
setLastCopied({lineWise: true, text: ranges.text});
... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
TextareaInput.prototype.createField = function (_display) {
// Wraps and hides input textarea
this.wrapper = hiddenTextarea();
// The semihidden textarea that is focused when the editor is
// focused, and receives input.
this.textarea = this.wrapper.firstChild;
var opts = this.cm.options;
... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function onCopyCut(e) {
if (!belongsToInput(e) || signalDOMEvent(cm, e)) { return }
if (cm.somethingSelected()) {
setLastCopied({lineWise: false, text: cm.getSelections()});
if (e.type == "cut") { cm.replaceSelection("", null, "cut"); }
} else if (!cm.options.lineWiseCopyCut) {
... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
support: set("decimallessFloat zerolessFloat hexNumber")
});
}); | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
dateSQL: set("date time timestamp zone"),
// hexNumber is necessary for VARBINARY literals, e.g. X'65683F'
// but it also enables 0xFF hex numbers, which Trino doesn't support.
support: set("decimallessFloat zerolessFloat hexNumber")
});
}); | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return r}function s(n,t,r,e){var u=null==n?0:n.length;for(e&&u&&(r=n[--u]);u--;)r=t(r,n[u],u,n);return r}function h(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(t(n[r],r,n))return!0;return!1}function p(n){return n.split("")}function _(n){return n.match($t)||[]}function v(n,t,r){var e;return r(n,function(n,r,u){... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
writable:!0})}:La,js=uu,As=$l||function(n){return re.clearTimeout(n)},ks=es&&1/P(new es([,-0]))[1]==Sn?function(n){return new es(n)}:Da,Os=os?function(n){return os.get(n)}:Da,Is=Pl?function(n){return null==n?[]:(n=ll(n),i(Pl(n),function(t){return Wl.call(n,t)}))}:Pa,Rs=Pl?function(n){for(var t=[];n;)a(t,Is(n)),n=El... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return Nr(Fr(n,an))}function Sa(n){return function(){return n}}function Wa(n,t){return null==n||n!==n?t:n}function La(n){return n}function Ca(n){return De("function"==typeof n?n:Fr(n,an))}function Ua(n){return qe(Fr(n,an))}function Ba(n,t){return Ze(n,Fr(t,an))}function Ta(n,t,e){var u=Pc(t),i=fe(t,u);null!=e||fc(t... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return r}function s(n,t,r,e){var u=null==n?0:n.length;for(e&&u&&(r=n[--u]);u--;)r=t(r,n[u],u,n);return r}function h(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(t(n[r],r,n))return!0;return!1}function p(n){return n.split("")}function _(n){return n.match($t)||[]}function v(n,t,r){var e;return r(n,function(n,r,u){... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
var v=Xh(function(){return cl(f,p+"return "+s).apply(X,c)});if(v.source=s,rc(v))throw v;return v}function ma(n){return Ec(n).toLowerCase()}function xa(n){return Ec(n).toUpperCase()}function ja(n,t,r){if(n=Ec(n),n&&(r||t===X))return R(n);if(!n||!(t=vu(t)))return n;var e=G(n),u=G(t);return Ou(e,W(e,u),L(e,u)+1).join(... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
(function(){function n(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function t(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u<i;){var o=n[u];t(e,o,r(o),n)}return e}function r(n,t){for(var r=-1,e=... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return r}function s(n,t,r,e){var u=null==n?0:n.length;for(e&&u&&(r=n[--u]);u--;)r=t(r,n[u],u,n);return r}function h(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(t(n[r],r,n))return!0;return!1}function p(n){return n.split("")}function _(n){return n.match($t)||[]}function v(n,t,r){var e;return r(n,function(n,r,u){... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return Nr(Fr(n,an))}function Sa(n){return function(){return n}}function Wa(n,t){return null==n||n!==n?t:n}function La(n){return n}function Ca(n){return De("function"==typeof n?n:Fr(n,an))}function Ua(n){return qe(Fr(n,an))}function Ba(n,t){return Ze(n,Fr(t,an))}function Ta(n,t,e){var u=Pc(t),i=fe(t,u);null!=e||fc(t... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
ir.prototype.get=cr,ir.prototype.has=ar,ir.prototype.set=lr,sr.prototype.clear=hr,sr.prototype.delete=pr,sr.prototype.get=_r,sr.prototype.has=vr,sr.prototype.set=gr,yr.prototype.add=yr.prototype.push=dr,yr.prototype.has=br,wr.prototype.clear=mr,wr.prototype.delete=xr,wr.prototype.get=jr,wr.prototype.has=Ar,wr.proto... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
if(o||t){var r=n(this.__wrapped__);return(r.__actions__=Tu(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,a([this.value()],arguments))})}),n}function $a(){return re._===this&&(re._=Al),this}function Da(){}function Ma(n){return n=kc(n),uu(function(t){return Ge(t,n)})}func... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
writable:!0})}:La,js=uu,As=$l||function(n){return re.clearTimeout(n)},ks=es&&1/P(new es([,-0]))[1]==Sn?function(n){return new es(n)}:Da,Os=os?function(n){return os.get(n)}:Da,Is=Pl?function(n){return null==n?[]:(n=ll(n),i(Pl(n),function(t){return Wl.call(n,t)}))}:Pa,Rs=Pl?function(n){for(var t=[];n;)a(t,Is(n)),n=El... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
try{var n=Ai(ll,"defineProperty");return n({},"",{}),n}catch(n){}}(),$l=x.clearTimeout!==re.clearTimeout&&x.clearTimeout,Dl=ol&&ol.now!==re.Date.now&&ol.now,Ml=x.setTimeout!==re.setTimeout&&x.setTimeout,Fl=al.ceil,Nl=al.floor,Pl=ll.getOwnPropertySymbols,ql=Ol?Ol.isBuffer:X,Zl=x.isFinite,Kl=_l.join,Vl=F(ll.keys,ll),... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
if(o||t){var r=n(this.__wrapped__);return(r.__actions__=Tu(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,a([this.value()],arguments))})}),n}function $a(){return re._===this&&(re._=Al),this}function Da(){}function Ma(n){return n=kc(n),uu(function(t){return Ge(t,n)})}func... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return Ie(r,n,t)})}),Ct.prototype.reject=function(n){return this.filter(Uf(mi(n)))},Ct.prototype.slice=function(n,t){n=kc(n);var r=this;return r.__filtered__&&(n>0||t<0)?new Ct(r):(n<0?r=r.takeRight(-n):n&&(r=r.drop(n)),t!==X&&(t=kc(t),r=t<0?r.dropRight(-t):r.take(t-n)),r)},Ct.prototype.takeRightWhile=function(n){r... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return n.forEach(function(n){r[++t]=n}),r}function q(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=[n,n]}),r}function Z(n,t,r){for(var e=r-1,u=n.length;++e<u;)if(n[e]===t)return e;return-1}function K(n,t,r){for(var e=r+1;e--;)if(n[e]===t)return e;return e}function V(n){return T(n)?J(n):_e(n)}funct... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
for(var u=r-1,i=n.length;++u<i;)if(e(n[u],t))return u;return-1}function b(n){return n!==n}function w(n,t){var r=null==n?0:n.length;return r?k(n,t)/r:Cn}function m(n){return function(t){return null==t?X:t[n]}}function x(n){return function(t){return null==n?X:n[t]}}function j(n,t,r,e,u){return u(n,function(n,u,i){r=e... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}return r}function O(n,t){for(var r=-1,e=Array(n);++r<n;)e[r]=t(r);return e}function I(n,t){return c(t,function(t){return[t,n[t]]})}function R(n){return n?n.slice(0,H(n)+1).replace(Lt,""):n}function z(n){return function(t){return n(t)}}function E(n,t){return c(t,function(t){return n[t]})}function S(n,t){return n.ha... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return Nr(Fr(n,an))}function Sa(n){return function(){return n}}function Wa(n,t){return null==n||n!==n?t:n}function La(n){return n}function Ca(n){return De("function"==typeof n?n:Fr(n,an))}function Ua(n){return qe(Fr(n,an))}function Ba(n,t){return Ze(n,Fr(t,an))}function Ta(n,t,e){var u=Pc(t),i=fe(t,u);null!=e||fc(t... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
writable:!0})}:La,js=uu,As=$l||function(n){return re.clearTimeout(n)},ks=es&&1/P(new es([,-0]))[1]==Sn?function(n){return new es(n)}:Da,Os=os?function(n){return os.get(n)}:Da,Is=Pl?function(n){return null==n?[]:(n=ll(n),i(Pl(n),function(t){return Wl.call(n,t)}))}:Pa,Rs=Pl?function(n){for(var t=[];n;)a(t,Is(n)),n=El... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return n.forEach(function(n){r[++t]=n}),r}function q(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=[n,n]}),r}function Z(n,t,r){for(var e=r-1,u=n.length;++e<u;)if(n[e]===t)return e;return-1}function K(n,t,r){for(var e=r+1;e--;)if(n[e]===t)return e;return e}function V(n){return T(n)?J(n):_e(n)}funct... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
writable:!0})}:La,js=uu,As=$l||function(n){return re.clearTimeout(n)},ks=es&&1/P(new es([,-0]))[1]==Sn?function(n){return new es(n)}:Da,Os=os?function(n){return os.get(n)}:Da,Is=Pl?function(n){return null==n?[]:(n=ll(n),i(Pl(n),function(t){return Wl.call(n,t)}))}:Pa,Rs=Pl?function(n){for(var t=[];n;)a(t,Is(n)),n=El... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
for(var u=r-1,i=n.length;++u<i;)if(e(n[u],t))return u;return-1}function b(n){return n!==n}function w(n,t){var r=null==n?0:n.length;return r?k(n,t)/r:Cn}function m(n){return function(t){return null==t?X:t[n]}}function x(n){return function(t){return null==n?X:n[t]}}function j(n,t,r,e,u){return u(n,function(n,u,i){r=e... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}return r}function O(n,t){for(var r=-1,e=Array(n);++r<n;)e[r]=t(r);return e}function I(n,t){return c(t,function(t){return[t,n[t]]})}function R(n){return n?n.slice(0,H(n)+1).replace(Lt,""):n}function z(n){return function(t){return n(t)}}function E(n,t){return c(t,function(t){return n[t]})}function S(n,t){return n.ha... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return Nr(Fr(n,an))}function Sa(n){return function(){return n}}function Wa(n,t){return null==n||n!==n?t:n}function La(n){return n}function Ca(n){return De("function"==typeof n?n:Fr(n,an))}function Ua(n){return qe(Fr(n,an))}function Ba(n,t){return Ze(n,Fr(t,an))}function Ta(n,t,e){var u=Pc(t),i=fe(t,u);null!=e||fc(t... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return n.forEach(function(n){r[++t]=n}),r}function q(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=[n,n]}),r}function Z(n,t,r){for(var e=r-1,u=n.length;++e<u;)if(n[e]===t)return e;return-1}function K(n,t,r){for(var e=r+1;e--;)if(n[e]===t)return e;return e}function V(n){return T(n)?J(n):_e(n)}funct... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
for(var u=r-1,i=n.length;++u<i;)if(e(n[u],t))return u;return-1}function b(n){return n!==n}function w(n,t){var r=null==n?0:n.length;return r?k(n,t)/r:Cn}function m(n){return function(t){return null==t?X:t[n]}}function x(n){return function(t){return null==n?X:n[t]}}function j(n,t,r,e,u){return u(n,function(n,u,i){r=e... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return n.forEach(function(n){r[++t]=n}),r}function q(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=[n,n]}),r}function Z(n,t,r){for(var e=r-1,u=n.length;++e<u;)if(n[e]===t)return e;return-1}function K(n,t,r){for(var e=r+1;e--;)if(n[e]===t)return e;return e}function V(n){return T(n)?J(n):_e(n)}funct... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
var r="take"+(t?"Right":"");Ct.prototype[n]=function(){return this[r](1).value()[0]}}),r(["initial","tail"],function(n,t){var r="drop"+(t?"":"Right");Ct.prototype[n]=function(){return this.__filtered__?new Ct(this):this[r](1)}}),Ct.prototype.compact=function(){return this.filter(La)},Ct.prototype.find=function(n){r... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function el(n){return n&&n.length?k(n,La):0}function ul(n,t){return n&&n.length?k(n,mi(t,2)):0}x=null==x?re:be.defaults(re.Object(),x,be.pick(re,qr));var il=x.Array,ol=x.Date,fl=x.Error,cl=x.Function,al=x.Math,ll=x.Object,sl=x.RegExp,hl=x.String,pl=x.TypeError,_l=il.prototype,vl=cl.prototype,gl=ll.prototype,yl=x["... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return Nr(Fr(n,an))}function Sa(n){return function(){return n}}function Wa(n,t){return null==n||n!==n?t:n}function La(n){return n}function Ca(n){return De("function"==typeof n?n:Fr(n,an))}function Ua(n){return qe(Fr(n,an))}function Ba(n,t){return Ze(n,Fr(t,an))}function Ta(n,t,e){var u=Pc(t),i=fe(t,u);null!=e||fc(t... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
var v=Xh(function(){return cl(f,p+"return "+s).apply(X,c)});if(v.source=s,rc(v))throw v;return v}function ma(n){return Ec(n).toLowerCase()}function xa(n){return Ec(n).toUpperCase()}function ja(n,t,r){if(n=Ec(n),n&&(r||t===X))return R(n);if(!n||!(t=vu(t)))return n;var e=G(n),u=G(t);return Ou(e,W(e,u),L(e,u)+1).join(... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
c=c.slice(0,s===X?f:s)}}else if(n.indexOf(vu(u),f)!=f){var h=c.lastIndexOf(u);h>-1&&(c=c.slice(0,h))}return c+e}function Ia(n){return n=Ec(n),n&&jt.test(n)?n.replace(mt,ye):n}function Ra(n,t,r){return n=Ec(n),t=r?X:t,t===X?$(n)?Q(n):_(n):n.match(t)||[]}function za(t){var r=null==t?0:t.length,e=mi();return t=r?c(t,f... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
r=r===X?1:Gl(kc(r),0);var e=this.__filtered__&&!t?new Ct(this):this.clone();return e.__filtered__?e.__takeCount__=Hl(r,e.__takeCount__):e.__views__.push({size:Hl(r,Un),type:n+(e.__dir__<0?"Right":"")}),e},Ct.prototype[n+"Right"]=function(t){return this.reverse()[n](t).reverse()}}),r(["filter","map","takeWhile"],fun... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
(function(){function n(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function t(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u<i;){var o=n[u];t(e,o,r(o),n)}return e}function r(n,t){for(var r=-1,e=... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
(function(){function n(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function t(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u<i;){var o=n[u];t(e,o,r(o),n)}return e}function r(n,t){for(var r=-1,e=... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
c=c.slice(0,s===X?f:s)}}else if(n.indexOf(vu(u),f)!=f){var h=c.lastIndexOf(u);h>-1&&(c=c.slice(0,h))}return c+e}function Ia(n){return n=Ec(n),n&&jt.test(n)?n.replace(mt,ye):n}function Ra(n,t,r){return n=Ec(n),t=r?X:t,t===X?$(n)?Q(n):_(n):n.match(t)||[]}function za(t){var r=null==t?0:t.length,e=mi();return t=r?c(t,f... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return ys(t,function(t){o[++u]=i?n(r,t,e):Ie(t,r,e)}),o}),uh=Fu(function(n,t,r){Br(n,r,t)}),ih=Fu(function(n,t,r){n[r?0:1].push(t)},function(){return[[],[]]}),oh=uu(function(n,t){if(null==n)return[];var r=t.length;return r>1&&Ui(n,t[0],t[1])?t=[]:r>2&&Ui(t[0],t[1],t[2])&&(t=[t[0]]),He(n,ee(t,1),[])}),fh=Dl||functio... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
function n(){}return function(t){if(!fc(t))return{};if(Sl)return Sl(t);n.prototype=t;var r=new n;return n.prototype=X,r}}();Z.templateSettings={escape:kt,evaluate:Ot,interpolate:It,variable:"",imports:{_:Z}},Z.prototype=J.prototype,Z.prototype.constructor=Z,Y.prototype=gs(J.prototype),Y.prototype.constructor=Y,Ct.p... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return!0}function i(n,t){for(var r=-1,e=null==n?0:n.length,u=0,i=[];++r<e;){var o=n[r];t(o,r,n)&&(i[u++]=o)}return i}function o(n,t){return!!(null==n?0:n.length)&&y(n,t,0)>-1}function f(n,t,r){for(var e=-1,u=null==n?0:n.length;++e<u;)if(r(t,n[e]))return!0;return!1}function c(n,t){for(var r=-1,e=null==n?0:n.length,u... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
u&&(Z.prototype[t]=function(){var t=this.__wrapped__,o=e?[1]:arguments,f=t instanceof Ct,c=o[0],l=f||bh(t),s=function(n){var t=u.apply(Z,a([n],o));return e&&h?t[0]:t};l&&r&&"function"==typeof c&&1!=c.length&&(f=l=!1);var h=this.__chain__,p=!!this.__actions__.length,_=i&&!h,v=f&&!p;if(!i&&l){t=v?t:new Ct(this);var g... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
c=c.slice(0,s===X?f:s)}}else if(n.indexOf(vu(u),f)!=f){var h=c.lastIndexOf(u);h>-1&&(c=c.slice(0,h))}return c+e}function Ia(n){return n=Ec(n),n&&jt.test(n)?n.replace(mt,ye):n}function Ra(n,t,r){return n=Ec(n),t=r?X:t,t===X?$(n)?Q(n):_(n):n.match(t)||[]}function za(t){var r=null==t?0:t.length,e=mi();return t=r?c(t,f... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return!0}function i(n,t){for(var r=-1,e=null==n?0:n.length,u=0,i=[];++r<e;){var o=n[r];t(o,r,n)&&(i[u++]=o)}return i}function o(n,t){return!!(null==n?0:n.length)&&y(n,t,0)>-1}function f(n,t,r){for(var e=-1,u=null==n?0:n.length;++e<u;)if(r(t,n[e]))return!0;return!1}function c(n,t){for(var r=-1,e=null==n?0:n.length,u... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}return r}function O(n,t){for(var r=-1,e=Array(n);++r<n;)e[r]=t(r);return e}function I(n,t){return c(t,function(t){return[t,n[t]]})}function R(n){return n?n.slice(0,H(n)+1).replace(Lt,""):n}function z(n){return function(t){return n(t)}}function E(n,t){return c(t,function(t){return n[t]})}function S(n,t){return n.ha... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function Va(){return!0}function Ga(n,t){if(n=kc(n),n<1||n>Wn)return[];var r=Un,e=Hl(n,Un);t=mi(t),n-=Un;for(var u=O(e,t);++r<n;)t(r);return u}function Ha(n){return bh(n)?c(n,no):bc(n)?[n]:Tu(Cs(Ec(n)))}function Ja(n){var t=++wl;return Ec(n)+t}function Ya(n){return n&&n.length?Yr(n,La,me):X}function Qa(n,t){return ... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
writable:!0})}:La,js=uu,As=$l||function(n){return re.clearTimeout(n)},ks=es&&1/P(new es([,-0]))[1]==Sn?function(n){return new es(n)}:Da,Os=os?function(n){return os.get(n)}:Da,Is=Pl?function(n){return null==n?[]:(n=ll(n),i(Pl(n),function(t){return Wl.call(n,t)}))}:Pa,Rs=Pl?function(n){for(var t=[];n;)a(t,Is(n)),n=El... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
}function el(n){return n&&n.length?k(n,La):0}function ul(n,t){return n&&n.length?k(n,mi(t,2)):0}x=null==x?re:be.defaults(re.Object(),x,be.pick(re,qr));var il=x.Array,ol=x.Date,fl=x.Error,cl=x.Function,al=x.Math,ll=x.Object,sl=x.RegExp,hl=x.String,pl=x.TypeError,_l=il.prototype,vl=cl.prototype,gl=ll.prototype,yl=x["... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
if(o||t){var r=n(this.__wrapped__);return(r.__actions__=Tu(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,a([this.value()],arguments))})}),n}function $a(){return re._===this&&(re._=Al),this}function Da(){}function Ma(n){return n=kc(n),uu(function(t){return Ge(t,n)})}func... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
for(var u=r-1,i=n.length;++u<i;)if(e(n[u],t))return u;return-1}function b(n){return n!==n}function w(n,t){var r=null==n?0:n.length;return r?k(n,t)/r:Cn}function m(n){return function(t){return null==t?X:t[n]}}function x(n){return function(t){return null==n?X:n[t]}}function j(n,t,r,e,u){return u(n,function(n,u,i){r=e... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
(function(){function n(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function t(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u<i;){var o=n[u];t(e,o,r(o),n)}return e}function r(n,t){for(var r=-1,e=... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
return e}function U(n){return"\\"+Yr[n]}function B(n,t){return null==n?X:n[t]}function T(n){return Nr.test(n)}function $(n){return Pr.test(n)}function D(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function M(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function F(n,... | 1 | JavaScript | CWE-1103 | Use of Platform-Dependent Third Party Components | The product relies on third-party components that do
not provide equivalent functionality across all desirable
platforms. | https://cwe.mitre.org/data/definitions/1103.html | safe |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.