Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

View File

@@ -1,8 +1,8 @@
import ListCache from './ListCache.js';
import MapCache from './MapCache.js';
import ListCache from './ListCache.js'
import MapCache from './MapCache.js'
/** Used as the size to enable large array optimizations. */
const LARGE_ARRAY_SIZE = 200;
const LARGE_ARRAY_SIZE = 200
class Stack {
@@ -14,8 +14,8 @@ class Stack {
* @param {Array} [entries] The key-value pairs to cache.
*/
constructor(entries) {
const data = this.__data__ = new ListCache(entries);
this.size = data.size;
const data = this.__data__ = new ListCache(entries)
this.size = data.size
}
/**
@@ -24,8 +24,8 @@ class Stack {
* @memberOf Stack
*/
clear() {
this.__data__ = new ListCache;
this.size = 0;
this.__data__ = new ListCache
this.size = 0
}
/**
@@ -36,11 +36,11 @@ class Stack {
* @returns {boolean} Returns `true` if the entry was removed, else `false`.
*/
delete(key) {
const data = this.__data__;
const result = data['delete'](key);
const data = this.__data__
const result = data['delete'](key)
this.size = data.size;
return result;
this.size = data.size
return result
}
/**
@@ -51,7 +51,7 @@ class Stack {
* @returns {*} Returns the entry value.
*/
get(key) {
return this.__data__.get(key);
return this.__data__.get(key)
}
/**
@@ -62,7 +62,7 @@ class Stack {
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
has(key) {
return this.__data__.has(key);
return this.__data__.has(key)
}
/**
@@ -74,20 +74,20 @@ class Stack {
* @returns {Object} Returns the stack cache instance.
*/
set(key, value) {
let data = this.__data__;
let data = this.__data__
if (data instanceof ListCache) {
const pairs = data.__data__;
const pairs = data.__data__
if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {
pairs.push([key, value]);
this.size = ++data.size;
return this;
pairs.push([key, value])
this.size = ++data.size
return this
}
data = this.__data__ = new MapCache(pairs);
data = this.__data__ = new MapCache(pairs)
}
data.set(key, value);
this.size = data.size;
return this;
data.set(key, value)
this.size = data.size
return this
}
}
export default Stack;
export default Stack