From c6dbf0450566c40efc4a26f4f0717452b6ef95cd Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 10 Aug 2022 10:38:44 +0200 Subject: Initial commit --- node_modules/yamlparser/README.markdown | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 node_modules/yamlparser/README.markdown (limited to 'node_modules/yamlparser/README.markdown') diff --git a/node_modules/yamlparser/README.markdown b/node_modules/yamlparser/README.markdown new file mode 100644 index 0000000..25bbefe --- /dev/null +++ b/node_modules/yamlparser/README.markdown @@ -0,0 +1,48 @@ +YAML Parser for Javascript +========================== + +Author: Diogo Costa () + +Date: 8th August 2011 + +Description +----------- + +This is CommonJS port of my Javascript YAML Parser, available at: +http://code.google.com/p/javascript-yaml-parser/ + +The same as the original project, this project intends to implement a simple YAML +parser. It does not intend to implement all the aspects formalized in the YAML +specs, but rather to implement a robust parser in Javascript, enough to load +simply structured YAML files. + +Installation +------------ + +The parser is available as a NPM module, this is the recommended way of installation. + +Run the following command and you should be ready to go: + + npm install yamlparser + +Documentation +------------- + +ToDo + +Disclaimer +---------- + +I try to deliver high quality products, but I do not guarantee that the product +is free from defects. My software is provided "as is", and you use the software +at your own risk. + +I make no warranties as to performance, merchantability, fitness for a +particular purpose, or any other warranties whether expressed or implied. + +Under no circumstances shall I be liable for direct, indirect, special, +incidental, or consequential damages resulting from the use, misuse, or +inability to use this software, even if I have been advised of the possibility +of such damages. + +Please consult the license file for more information. -- cgit