diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-04-23 11:22:20 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-04-23 11:22:20 +0200 |
commit | ce95f316b9ce1eac1e615db3540c4d0f30408d63 (patch) | |
tree | 2cb773317a937887c216d93afd6d92fcdca64475 /lib/api/decodePage.js | |
parent | a162af5a75453a6ecb818447540cbffdc774715f (diff) | |
download | gitbook-ce95f316b9ce1eac1e615db3540c4d0f30408d63.zip gitbook-ce95f316b9ce1eac1e615db3540c4d0f30408d63.tar.gz gitbook-ce95f316b9ce1eac1e615db3540c4d0f30408d63.tar.bz2 |
Add method to be article by level
Diffstat (limited to 'lib/api/decodePage.js')
-rw-r--r-- | lib/api/decodePage.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/api/decodePage.js b/lib/api/decodePage.js new file mode 100644 index 0000000..b9941c1 --- /dev/null +++ b/lib/api/decodePage.js @@ -0,0 +1,15 @@ + +/** + Decode changes from a JS API to a page boject + + @param {Output} output + @param {Page} page + @param {Object} result + @return {Page} +*/ +function decodePage(output, page, result) { + + +} + +module.exports = decodePage; |