Closed maurelian closed 7 years ago
How should namePrep be enforced in the package?
If someone calls startAuction(‘camelCaseName’), should it throw an error, or start an auction on camelcasename?
startAuction(‘camelCaseName’)
camelcasename
It will convert the name to conform to name prep, and start the auction. This is similar to how browsers handle capitals in the URL.
How should namePrep be enforced in the package?
If someone calls
startAuction(‘camelCaseName’)
, should it throw an error, or start an auction oncamelcasename
?