Skip to content

Commit

Permalink
Merge pull request #3 from dbpkgs/patch-files
Browse files Browse the repository at this point in the history
patches: Update variable doc to private
  • Loading branch information
sheldon-welinga authored Feb 20, 2022
2 parents 234268f + 07097da commit b827333
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dbpkgs/cookie",
"version": "1.1.0",
"private": true,
"version": "1.1.1",
"private": false,
"description": "A lightweight browser cookie for frontend applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/Cookie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const encode = window.encodeURIComponent;
export const decode = window.decodeURIComponent;

export default class Cookie {
doc: Partial<Document> | undefined | string;
private doc: Partial<Document> | undefined | string;
constructor(domDocument?: Partial<Document> | string) {
this.doc = domDocument;

Expand Down

0 comments on commit b827333

Please sign in to comment.