update node to v18

This commit is contained in:
syuilo 2022-11-13 11:23:14 +09:00
parent 49daa56a64
commit 1751bfea5f
6 changed files with 7 additions and 12 deletions

View file

@ -55,9 +55,7 @@ export class DriveFileEntityService {
public getPublicProperties(file: DriveFile): DriveFile['properties'] {
if (file.properties.orientation != null) {
// TODO
//const properties = structuredClone(file.properties);
const properties = JSON.parse(JSON.stringify(file.properties));
const properties = structuredClone(file.properties);
if (file.properties.orientation >= 5) {
[properties.width, properties.height] = [properties.height, properties.width];
}