File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ const getNewCursorStatement = (
120120// return cursorSt.count;
121121// };
122122
123- const getResultsAsObject = ( cursorSt : FMResultSet ) : SqliteRow => {
123+ function getResultsAsObject ( cursorSt : FMResultSet ) : SqliteRow {
124124 // const count = cursorSt.columnCount;
125125 // if (!count) {
126126 // return null;
@@ -136,7 +136,7 @@ const getResultsAsObject = (cursorSt: FMResultSet): SqliteRow => {
136136 return data ;
137137} ;
138138
139- const getResultsAsArray = ( cursorSt : FMResultSet ) : SqliteParam [ ] => {
139+ function getResultsAsArray ( cursorSt : FMResultSet ) : SqliteParam [ ] {
140140 const data = [ ] ;
141141 const dict = cursorSt . resultDictionary ;
142142 dict . enumerateKeysAndObjectsUsingBlock ( ( key : any , value : any ) => {
You can’t perform that action at this time.
0 commit comments