From c059d3ca20c3d1e61bbfb2807b555f2efbde6f6e Mon Sep 17 00:00:00 2001 From: Ewout Stortenbeker Date: Tue, 6 Nov 2018 11:10:23 +0100 Subject: [PATCH] Removed description comment --- src/acebase.js | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/src/acebase.js b/src/acebase.js index 6cd6816..271927a 100644 --- a/src/acebase.js +++ b/src/acebase.js @@ -1,6 +1,6 @@ /** - * ________________________________________________________________________________ - * + ________________________________________________________________________________ + ___ ______ / _ \ | ___ \ / /_\ \ ___ ___| |_/ / __ _ ___ ___ @@ -8,22 +8,10 @@ | | | | (_| __/ |_/ / (_| \__ \ __/ \_| |_/\___\___\____/ \__,_|___/\___| - - * A fast, low memory, transactional & query enabled JSON database server for node.js, - * inspired by the Firebase realtime database. Capable of storing up to - * 2^48 (281 trillion) object nodes in a binary database file that can theoretically - * grow to a max filesize of 8PB (petabytes) - * - * Natively supports storing of objects, arrays, numbers, strings, booleans, dates - * and binary (ArrayBuffer) data. Custom classes can be automatically shapeshifted - * to and from plain objects by adding type mappings --> Store a User, get a User. - * - * --> Alpha release, don't use in production yet! - * - * Copyright 2018 by Ewout Stortenbeker (me@appy.one) - * Published under MIT license - * ________________________________________________________________________________ - * + Copyright 2018 by Ewout Stortenbeker (me@appy.one) + Published under MIT license + ________________________________________________________________________________ + */ const { EventEmitter } = require('events'); const { TypeMappings } = require('./type-mappings');