2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/common/index.js

17 lines
562 B
JavaScript
Raw Normal View History

2018-01-08 12:30:14 +00:00
const utils = require('../utils');
2018-02-07 13:23:52 +00:00
const number_format = require('../utils/number_format');
2018-02-14 12:50:56 +00:00
const format = require('../utils/format');
const errors = require('./errors');
const BaseDocument = require('frappejs/model/document');
const BaseMeta = require('frappejs/model/meta');
2018-01-08 12:30:14 +00:00
module.exports = {
initLibs(frappe) {
2018-01-12 12:25:07 +00:00
Object.assign(frappe, utils);
2018-02-07 13:23:52 +00:00
Object.assign(frappe, number_format);
2018-02-14 12:50:56 +00:00
Object.assign(frappe, format);
frappe.errors = errors;
frappe.BaseDocument = BaseDocument;
frappe.BaseMeta = BaseMeta;
2018-01-12 12:25:07 +00:00
}
2018-01-08 12:30:14 +00:00
}