1.0.2 • Published 4 years ago

anayarojo-namespace-js v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Namespace JS

Library for create namespaces in javascript.

Installation

npm i anayarojo-namespace-js

Usage

import namespace from 'anayarojo-namespace-js';

// Create a simple namespace
namespace('App.Module.Section');

// Create multiple namespaces
namespace('App.Module.SectionA', 'App.Module.SectionB', 'App.Module.SectionC');

// Create multiple namespaces with an array as parameter
namespace(['App.Module.SectionA', 'App.Module.SectionB', 'App.Module.SectionC']);

App.Module.Section = (function() {
    // ... functions here ...
});