mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 06:51:23 +08:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
define(function (require) {
|
|
var b = require ('b')// a comment right against the require
|
|
|
|
return {
|
|
name: 'a',
|
|
b: b
|
|
};
|
|
});
|