Exporter une classe

'use strict';

class Utility {
   constructor() {
   }
}
const Utility = () => new Utility();
export { Utility };
lieutenant-uni