Skip to content

Commit

Permalink
[ESLint] 埋め込んだライブラリの始めで無効化したESLintが、ライブラリ内で有効化されていたのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
esperecyan committed Jul 30, 2022
1 parent 42678ce commit ef0aae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions バーチャルキャストを起動.js.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function polyfill()

var isRegex; /* inlined from https://npmjs.com/is-regex */ var regexExec = RegExp.prototype.exec, tryRegexExec = function tryRegexExec(value) { try { regexExec.call(value); return true; } catch (e) { return false; } }, regexClass = '[object RegExp]'; isRegex = function isRegex(value) { if (typeof value !== 'object') { return false; } return hasToStringTag ? tryRegexExec(value) : to_string.call(value) === regexClass; };
var isString; /* inlined from https://npmjs.com/is-string */ var strValue = String.prototype.valueOf, tryStringObject = function tryStringObject(value) { try { strValue.call(value); return true; } catch (e) { return false; } }, stringClass = '[object String]'; isString = function isString(value) { if (typeof value === 'string') { return true; } if (typeof value !== 'object') { return false; } return hasToStringTag ? tryStringObject(value) : to_string.call(value) === stringClass; };
/* eslint-enable one-var-declaration-per-line, no-redeclare, max-statements-per-line */
/* eslint-enable one-var-declaration-per-line */

/* inlined from http://npmjs.com/define-properties */
var supportsDescriptors = $Object.defineProperty && (function () {
Expand Down Expand Up @@ -2451,7 +2451,7 @@ function polyfill()
defineSetter = call.bind(prototypeOfObject.__defineSetter__);
lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);
lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);
/* eslint-enable no-underscore-dangle, no-restricted-properties */
/* eslint-enable no-restricted-properties */
}

var isPrimitive = function isPrimitive(o) {
Expand Down

0 comments on commit ef0aae8

Please sign in to comment.