Add EOF newlines to all files that don't have it already for consistency
This commit is contained in:
parent
0770f32ef5
commit
931b6a96d0
27 changed files with 27 additions and 27 deletions
|
|
@ -1,3 +1,3 @@
|
|||
export function createArray(...args) {
|
||||
return args.slice(0, -1);
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,4 +11,4 @@ export function detailsExpanded(expanded, collapseId) {
|
|||
return `open`;
|
||||
}
|
||||
return ``;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -28,4 +28,4 @@ export default {
|
|||
"xor": (a, b) => (a || b) && !(a && b),
|
||||
"xnor": (a, b) => !((a || b) && !(a && b)),
|
||||
"defined": v => v != null,
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8,4 +8,4 @@ export function objectValue(obj, keypath) {
|
|||
};
|
||||
let resp = helper(obj, keypath.string.split(`.`));
|
||||
return resp;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -7,4 +7,4 @@ export function schemaOptions(document, schemaPath) {
|
|||
}
|
||||
|
||||
return CONFIG.Actor.dataModels.player.schema.fields.weapon.fields.mainHand.fields.damage.options.options;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -23,4 +23,4 @@ export function toFriendlyDuration(duration) {
|
|||
friendly += `${duration}s`;
|
||||
};
|
||||
return friendly;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue