remove trailing commas
This commit is contained in:
parent
aa8f4133be
commit
5fa84fc9af
3 changed files with 3 additions and 3 deletions
|
@ -291,7 +291,7 @@ Ox.api = function(items, options) {
|
||||||
'>': function(a, b) { return a > b; },
|
'>': function(a, b) { return a > b; },
|
||||||
'>=': function(a, b) { return a >= b; },
|
'>=': function(a, b) { return a >= b; },
|
||||||
'^': function(a, b) { return Ox.starts(a, b); },
|
'^': function(a, b) { return Ox.starts(a, b); },
|
||||||
'$': function(a, b) { return Ox.ends(a, b); },
|
'$': function(a, b) { return Ox.ends(a, b); }
|
||||||
};
|
};
|
||||||
if (Ox.isString(itemValue)) {
|
if (Ox.isString(itemValue)) {
|
||||||
itemValue = itemValue.toLowerCase();
|
itemValue = itemValue.toLowerCase();
|
||||||
|
|
|
@ -65,7 +65,7 @@ Ox.MODIFIER_KEYS = {
|
||||||
altKey: 'alt', // Mac: option
|
altKey: 'alt', // Mac: option
|
||||||
ctrlKey: 'control',
|
ctrlKey: 'control',
|
||||||
shiftKey: 'shift',
|
shiftKey: 'shift',
|
||||||
metaKey: 'meta', // Mac: command
|
metaKey: 'meta' // Mac: command
|
||||||
}
|
}
|
||||||
//@ Ox.MONTHS <[str]> Names of months
|
//@ Ox.MONTHS <[str]> Names of months
|
||||||
Ox.MONTHS = [
|
Ox.MONTHS = [
|
||||||
|
|
|
@ -708,7 +708,7 @@ Ox.tokenize = (function() {
|
||||||
tokens.push({
|
tokens.push({
|
||||||
length: cursor - start,
|
length: cursor - start,
|
||||||
offset: start,
|
offset: start,
|
||||||
type: type,
|
type: type
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue