n3 1.25.2 → 2.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -159,13 +159,6 @@ prefix or, if set to an empty string, completely disable prefixing:
159
159
  const parser = new N3.Parser({ blankNodePrefix: '' });
160
160
  ```
161
161
 
162
- The parser can output a backwards chaining rule such as `_:q <= _:p.` in two ways:
163
- - as `_:p log:implies _:q.` (default)
164
- - as `_:q log:isImpliedBy _:p.` (when the `isImpliedBy` flag is set to `true`)
165
- ```JavaScript
166
- const parser = new N3.Parser({ isImpliedBy: true });
167
- ```
168
-
169
162
  ### From an RDF stream to quads
170
163
 
171
164
  `N3.Parser` can parse [Node.js streams](http://nodejs.org/api/stream.html) as they grow,