@bitloops/bl-transpiler
Version:
The one and only Bitloops Language transpiler
18 lines • 479 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WordsWithSpacesBuilder = void 0;
class WordsWithSpacesBuilder {
name;
withName(name) {
this.name = name;
return this;
}
build() {
const wordsWithSpaces = {
wordsWithSpaces: this.name,
};
return wordsWithSpaces;
}
}
exports.WordsWithSpacesBuilder = WordsWithSpacesBuilder;
//# sourceMappingURL=wordsWithSpacesBuilder.js.map