Skip to content
This repository was archived by the owner on Aug 21, 2020. It is now read-only.
This repository was archived by the owner on Aug 21, 2020. It is now read-only.

Specify prototype of object for getObject. #60

@christo8989

Description

@christo8989

I would love to specify a base object/prototype when I call getObject.

class Person { ... }
this.cookies.getObject('people', Person)

Why?

I'm using typescript and creating "classes" with properties on them. For example:

class Person {
    constructor(
        public firstname: string,
        public lastname: string) { }

    get fullname() {
        return `${this.firstname} ${this.lastname}`;
    }
}

When I use this.cookies.getObject('people'), I lose the fullname property becuase it exists on the prototype.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions