Skip to content

Commit ffce43c

Browse files
committed
trigger build - improved code climate
1 parent 5b3e04c commit ffce43c

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![jSQL Logo](http://i.imgur.com/VQlJKOc.png)](http://pamblam.github.io/jSQL/)
22

3-
jSQL (Official) - Version 3.1.1 - *Now available without a prescription!*
3+
jSQL (Official) - Version 3.1.2 - *Now available without a prescription!*
44

55
[![npm version](https://badge.fury.io/js/jsql-official.svg)](https://badge.fury.io/js/jsql-official) [![Build Status](https://travis-ci.org/Pamblam/jSQL.svg?branch=master)](https://travis-ci.org/Pamblam/jSQL) [![Inline docs](http://inch-ci.org/github/Pamblam/jSQL.svg?branch=master)](https://github.com/Pamblam/jSQL/wiki) [![Code Climate](https://codeclimate.com/github/Pamblam/jSQL/badges/gpa.svg)](https://codeclimate.com/github/Pamblam/jSQL) [![Coverage Status](https://coveralls.io/repos/github/Pamblam/jSQL/badge.svg?branch=master)](https://coveralls.io/github/Pamblam/jSQL?branch=master)
66

jSQL.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* jsql-official - v3.1.1
2+
* jsql-official - v3.1.2
33
* A persistent SQL database.
44
* @author Rob Parham
55
* @website http://pamblam.github.io/jSQL/
@@ -16,7 +16,6 @@ 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 */
2019
if(jSQL_Error.message_codes[error_no]) this.message = jSQL_Error.message_codes[error_no];
2120
else this.message = "Unknown error.";
2221
this.toString = function () {
@@ -2750,7 +2749,7 @@ function removeQuotes(str){
27502749
}
27512750

27522751
return {
2753-
version: "3.1.1",
2752+
version: "3.1.2",
27542753
tables: {},
27552754
query: jSQLParseQuery,
27562755
createTable: createTable,

jSQL.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsql-official",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "A persistent SQL database.",
55
"main": "jSQL.min.js",
66
"directories": {

src/error_handling/jSQL_Error.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ 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 */
87
if(jSQL_Error.message_codes[error_no]) this.message = jSQL_Error.message_codes[error_no];
98
else this.message = "Unknown error.";
109
this.toString = function () {

0 commit comments

Comments
 (0)