Sha256: 6e8291a08e4e7bdb716b279d75c526f3ff9f15100ed0c7556dc0d441f6f8d1e8
Contents?: true
Size: 241 Bytes
Versions: 3
Compression:
Stored size: 241 Bytes
Contents
class NodejsStringBuilder { constructor() { this.string = '' } string append(string) { this.string += string } getString() { return this.string } } module.exports = NodejsStringBuilder
Version data entries
3 entries across 3 versions & 1 rubygems