mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-05-03 04:47:07 +01:00
The ANALYZE command now excludes private fields by default for consistency.
This commit is contained in:
@ -33,7 +33,9 @@ _analyze = ( sources, dst, opts ) ->
|
||||
|
||||
nlzrs = _loadInspectors()
|
||||
results = _.map sources, (src) ->
|
||||
r = ResumeFactory.loadOne src, format: 'FRESH', objectify: true, inner: { private: opts.private }, @
|
||||
r = ResumeFactory.loadOne src, format: 'FRESH', objectify: true, inner: {
|
||||
private: opts.private is true
|
||||
}, @
|
||||
return { } if opts.assert and @hasError()
|
||||
|
||||
if r.fluenterror
|
||||
|
Reference in New Issue
Block a user