Skip to content

Commit

Permalink
` character error fix.
Browse files Browse the repository at this point in the history
version upgrade v1.0.6
  • Loading branch information
abdurrahmanekr committed Sep 6, 2017
1 parent 05a1b75 commit e882c2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ var SqlService = function () {
this.console = function(type, value, message) {
switch (type) {
case 'required':
console.warn(`${value} is reqiured.`);
console.warn(value + 'is reqiured.');
break;
case 'deprecated':
console.warn(`${value} is deprecated. ${message}`);
console.warn(value + ' is deprecated. + ' + message);
break;
default:
break;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "websqlite",
"version": "1.0.5",
"version": "1.0.6",
"description": "websql sqlite library, ionic, react-native, angularjs sqlite library, sqlite kütüphanesi Edit",
"main": "index.js",
"dependencies": {},
Expand Down

0 comments on commit e882c2a

Please sign in to comment.