sjohnsonaz / BuildJS-Full

A simple utility for class definition, inheritance, dynamic loading, MVVM, Widgets, and backend MVC.
http://buildjs.com
0 stars 0 forks source link

Remove Build.js helper parameter. #7

Closed sjohnsonaz closed 10 years ago

sjohnsonaz commented 10 years ago

All of the helper parameters have been condensed to a single object. Currently, this only includes merge and safe. However, we are only using these helpers in 10 lines of code across 6 files.

The helper parameter does give us a simple way to provide added helpers to class definitions, but this may be more mess than help.

We have a couple options:

I'm currently leaning towards just using the Build.merge and Build.safe option, as this simplifies the general class definition common case.

sjohnsonaz commented 10 years ago

Removed helper parameter from all definitions and usage.