File tree Expand file tree Collapse file tree 7 files changed +4
-116
lines changed
Expand file tree Collapse file tree 7 files changed +4
-116
lines changed Original file line number Diff line number Diff line change 11
22engines :
3- duplication :
4- enabled : true
5- config :
6- languages :
7- - javascript :
83 eslint :
94 enabled : true
105 fixme :
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ function jSQL_Error(error_no) {
1616 this . stack = undefined ;
1717 var e = new Error ( ) ;
1818 if ( e . stack ) this . stack = e . stack ;
19+ /* istanbul ignore next */
1920 switch ( error_no ) {
2021 case "0001" : this . message = "Corrupted function stored in data." ; break ;
2122 case "0002" : this . message = "Attempted to apply a non-function as an error handler." ; break ;
@@ -2399,6 +2400,7 @@ var API = {
23992400} ;
24002401
24012402
2403+ /* istanbul ignore next */
24022404var persistenceManager = new ( function ( ) {
24032405 var self = this ;
24042406 self . api = null ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ function jSQL_Error(error_no) {
44 this . stack = undefined ;
55 var e = new Error ( ) ;
66 if ( e . stack ) this . stack = e . stack ;
7+ /* istanbul ignore next */
78 switch ( error_no ) {
89 case "0001" : this . message = "Corrupted function stored in data." ; break ;
910 case "0002" : this . message = "Attempted to apply a non-function as an error handler." ; break ;
Original file line number Diff line number Diff line change 11
2+ /* istanbul ignore next */
23var persistenceManager = new ( function ( ) {
34 var self = this ;
45 self . api = null ;
You can’t perform that action at this time.
0 commit comments