Skip to content

Commit 25c952d

Browse files
authored
Fix example.js (#389)
If you currently try to execute "example.js", error "Cannot find module 'fast-json-stringify'" is thrown. To fix this, the import statement must be modified.
1 parent 8cde564 commit 25c952d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const moment = require('moment')
2-
const fastJson = require('fast-json-stringify')
2+
const fastJson = require('.')
33
const stringify = fastJson({
44
title: 'Example Schema',
55
type: 'object',

0 commit comments

Comments
 (0)