Skip to content

Commit 434f789

Browse files
committed
chore: refactoring
1 parent 28c0c57 commit 434f789

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sqlite.ios.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) => {

0 commit comments

Comments
 (0)