1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-04 15:43:15 +02:00

Merge pull request #735 from koalyptus/greenkeeper/eslint-6.2.0

Update eslint to the latest version 🚀
This commit is contained in:
koalyptus 2019-09-06 14:26:50 +10:00 committed by GitHub
commit b04d4f55ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 19129 additions and 2151 deletions

4
dist/starter.html vendored
View file

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>tablefilter v0.6.97 - Starter</title>
<title>tablefilter v0.6.98 - Starter</title>
</head>
<body>
<h1>tablefilter v0.6.97</h1>
<h1>tablefilter v0.6.98</h1>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4344
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "tablefilter",
"version": "0.6.97",
"version": "0.6.98",
"description": "A Javascript library making HTML tables filterable and a bit more",
"license": "MIT",
"author": {
@ -50,7 +50,7 @@
"diacritics": "1.3.0",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "6.0.0",
"eslint": "6.2.0",
"format-number": "3.0.0",
"grunt": "^1.0.1",
"grunt-cli": "1.3.2",

View file

@ -513,6 +513,7 @@ AdapterSortableTable.meta = {altName: 'sort'};
//Converters
function ipAddress(value) {
let vals = value.split('.');
// eslint-disable-next-line no-unused-vars
for (let x in vals) {
let val = vals[x];
while (3 > val.length) {