forked from hibas123/SecureFileWrapper
Making some fields private
This commit is contained in:
parent
f46f4982e9
commit
baa1f106e6
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "secure-file-wrapper",
|
||||
"version": "2.0.0",
|
||||
"name": "@hibas123/secure-file-wrapper",
|
||||
"version": "2.0.1",
|
||||
"main": "lib/index.js",
|
||||
"author": "Fabian Stamm <dev@fabianstamm.de>",
|
||||
"license": "MIT",
|
||||
@ -8,9 +8,8 @@
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"prepublish": "tsc",
|
||||
"test": "mocha lib/test.js",
|
||||
"install": "tsc"
|
||||
"prepublishOnly": "tsc",
|
||||
"test": "mocha lib/test.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"isomorphic-fetch": "^2.2.1"
|
||||
|
@ -89,9 +89,9 @@ export default class SecureFileWrapper {
|
||||
private _jwtObservableServer: Observable<(jwt: string) => void> = new Observable();
|
||||
jwtObservable = this._jwtObservableServer.getPublicApi();
|
||||
|
||||
jwt: string;
|
||||
private jwt: string;
|
||||
|
||||
auth_lock = new Lock();
|
||||
private auth_lock = new Lock();
|
||||
|
||||
constructor(private server: string) {
|
||||
if (this.server.endsWith("/")) {
|
||||
|
Loading…
Reference in New Issue
Block a user