@sap/odata-v4
Version:
OData V4.0 server library
18 lines (14 loc) • 337 B
JavaScript
;
const Transformation = require('./Transformation');
/**
* Identity transformation.
*
* @extends Transformation
* @hideconstructor
*/
class IdentityTransformation extends Transformation {
constructor() {
super(Transformation.TransformationKind.IDENTITY);
}
}
module.exports = IdentityTransformation;