Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Update issues
Browse files Browse the repository at this point in the history
  • Loading branch information
microshine committed Sep 14, 2017
1 parent b20b0c8 commit f13718d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/jose-commonjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ exports.setCrypto = function (cp) {
/**
* Default to the global "crypto" variable
*/
if (typeof crypto !== 'undefined') {
if (typeof(crypto) !== 'undefined') {
exports.setCrypto(crypto);
}

Expand Down
2 changes: 1 addition & 1 deletion dist/jose-testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ exports.setCrypto = function (cp) {
/**
* Default to the global "crypto" variable
*/
if (typeof crypto !== 'undefined') {
if (typeof(crypto) !== 'undefined') {
exports.setCrypto(crypto);
}

Expand Down
2 changes: 1 addition & 1 deletion dist/jose.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exports.setCrypto = function (cp) {
/**
* Default to the global "crypto" variable
*/
if (typeof crypto !== 'undefined') {
if (typeof(crypto) !== 'undefined') {
exports.setCrypto(crypto);
}

Expand Down
4 changes: 2 additions & 2 deletions jose-jwe-jws.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Type definitions for jose-jwe
// Project: jose-jwe
// Type definitions for jose-jwe-jws
// Project: jose-jwe-jws
// Definitions by: [~YOUR NAME~] <[~A URL FOR YOU~]>

interface IEncryptionResult {
Expand Down
2 changes: 1 addition & 1 deletion lib/jose-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ exports.setCrypto = function (cp) {
/**
* Default to the global "crypto" variable
*/
if (typeof crypto !== 'undefined') {
if (typeof(crypto) !== 'undefined') {
exports.setCrypto(crypto);
}

Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,5 @@
},
"typings": "jose-jwe-jws.d.ts",
"main": "dist/jose-commonjs.js",
"dependencies": {
}
"dependencies": {}
}

0 comments on commit f13718d

Please sign in to comment.