typed-ocpp
Version:
A library for type-aware parsing, serialization and validation of OCPP 1.6, OCPP 2.0 and OCPP 2.1 messages
14 lines • 419 B
JavaScript
export const EMPTY_ARR = Object.freeze([]);
export const EMPTY_OBJ = Object.freeze({});
export const assign = (target, source) => {
return Object.assign(target, source);
};
export const CHARGING_PROFILE_PURPOSES = [
'ChargingStationExternalConstraints',
'ChargingStationMaxProfile',
'TxDefaultProfile',
'TxProfile',
'PriorityCharging',
'LocalGeneration',
];
//# sourceMappingURL=utils.js.map