Name
const MyStamp = stampit({})
console.log(MyStamp.name) // "Stamp"const MyStamp = stampit({ name: "MyFactoryFunction" })
console.log(MyStamp.name) // "MyFactoryFunction"Gotchas
MyStamp = MyStamp.compose({ name: "Stamp" })Last updated
const MyStamp = stampit({})
console.log(MyStamp.name) // "Stamp"const MyStamp = stampit({ name: "MyFactoryFunction" })
console.log(MyStamp.name) // "MyFactoryFunction"MyStamp = MyStamp.compose({ name: "Stamp" })Last updated