Clone and edit this document
Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
Parse signature types
node v8.17.0
version:
master
endpoint
share
tweet
function parseSignature (str) { const reg = /\(.+\)|( ?-> ?)/g; return JSON.parse(`["${str.replace(reg, (match, capture) => capture ? `", "` : match)}"]`); } parseSignature("Apple -> (Banana -> Grape) -> Cherry");
Loading…
no comments
sign in
to comment