-
Notifications
You must be signed in to change notification settings - Fork 74
es6 import modules support #33
Copy link
Copy link
Open
Labels
Description
Recently switching my projects to es6 with babel, I'd like to do something like this with lockr:
import {
get,
set,
} from 'lockr'but when I call get this error throws:
TypeError: Cannot read property '_getPrefixedKey' of undefined
var query_key = this._getPrefixedKey(key, options)Not a big deal; importing the entire library is not a problem because it's small and minimal.
Thank you =]
Reactions are currently unavailable