Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
remove colors from output
Browse files Browse the repository at this point in the history
  • Loading branch information
taylordowns2000 committed Sep 25, 2017
1 parent 773a376 commit 4cae07d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Client.js
Expand Up @@ -33,7 +33,7 @@ function req(method, _ref) {
if (error) {
reject(error);
} else {
console.log("\x1b[32m%s\x1b[0m", '\u2713 ' + method + ' succeeded.');
console.log('\u2713 ' + method + ' succeeded.');
resolve((0, _Utils.tryJson)(body));
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "language-http",
"version": "1.0.1",
"version": "1.0.2",
"description": "An HTTP request language package for use with Open Function",
"main": "lib/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Client.js
Expand Up @@ -15,7 +15,7 @@ export function req( method, { url, headers, body, auth, query } ) {
if(error) {
reject(error);
} else {
console.log("\x1b[32m%s\x1b[0m", `✓ ${method} succeeded.`);
console.log(`✓ ${method} succeeded.`);
resolve(
tryJson(body)
);
Expand Down

0 comments on commit 4cae07d

Please sign in to comment.