We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do we support properties other than string?
string
Requirements:
Number
String
Boolean
Object
Array
Null
Function
Note: We already parse the given property string with JSON.parse(). This way we can support true, false, 1234, 'string', [], {}, null
JSON.parse()
true
false
1234
'string'
[]
{}
null
Nice Reads:
The text was updated successfully, but these errors were encountered:
closing as new plib version is live. If issue is with v2 still relevant, please re-open
Sorry, something went wrong.
LucaMele
AndyOGo
TheDadi
No branches or pull requests
How do we support properties other than
string
?Requirements:
Number
,String
,Boolean
,Object
,Array
Null
Function
as propertyNote:
We already parse the given property string with
JSON.parse()
. This way we can supporttrue
,false
,1234
,'string'
,[]
,{}
,null
Nice Reads:
The text was updated successfully, but these errors were encountered: