unageanu/container-js

View on GitHub
samples/binding/scripts/app/prototype.js

Summary

Maintainability
A
0 mins
Test Coverage
define(function(){
    
    "use strict";
    
    /**
     * @class
     */
    var Prototype = {
        method : function( arg ) {
            return arg;
        }
    }
    return Prototype;
});