UNPKG

raptor

Version:

RaptorJS provides an AMD module loader that works in Node, Rhino and the web browser. It also includes various sub-modules to support building optimized web applications.

14 lines (12 loc) 320 B
define.extend('raptor/render-context/Context', function() { "use strict"; return { uniqueId: function() { var attrs = this.attributes; if (!attrs._nextId) { attrs._nextId = 0; } return attrs._nextId++; } }; });