thisconnect / port

Port is an Node.js module to communicate and control Pd (Pure Data)
MIT License
35 stars 8 forks source link

turn flags object into array #4

Closed thisconnect closed 11 years ago

thisconnect commented 11 years ago

current flags option:

flags: ['-foo', '-bar', 'baz', '-bar', 'booz']

proposed:

flags: {
  'foo': true
  , 'bar': ['baz', 'booz']
}

see also https://github.com/thisconnect/source/commit/c72826f6aef39e43074cdd8ddd45c599b9ccb752

thisconnect commented 11 years ago

9fd73a02294afb501