File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -143,8 +143,10 @@ export function encodeRunestoneUnsafe(runestone: RunestoneSpec): {
143143
144144 if (
145145 etchingSpec . symbol &&
146- ( etchingSpec . symbol . length === 1 ||
147- ( etchingSpec . symbol . length === 2 && etchingSpec . symbol . codePointAt ( 0 ) ! >= 0x10000 ) )
146+ ! (
147+ etchingSpec . symbol . length === 1 ||
148+ ( etchingSpec . symbol . length === 2 && etchingSpec . symbol . codePointAt ( 0 ) ! >= 0x10000 )
149+ )
148150 ) {
149151 throw Error ( 'Symbol must be one code point' ) ;
150152 }
Original file line number Diff line number Diff line change 11{
22 "name" : " @magiceden-oss/runestone-lib" ,
3- "version" : " 0.6.0 -alpha" ,
3+ "version" : " 0.6.1 -alpha" ,
44 "description" : " " ,
55 "main" : " ./dist/index.js" ,
66 "types" : " ./dist/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments