首页 > 代码库 > [JS Compse] 4. A collection of Either examples compared to imperative code
[JS Compse] 4. A collection of Either examples compared to imperative code
For if..else:
const showPage() { if(current_user) { return renderPage(current_user); } else { return showLogin(); }}const showPage() { fromNullable(current_user) .fold(showLogin, renderPage)}
const getPrefs = user => { if(user.premium) { return loadPrefs(user.preferences) } else { return defaultPrefs; }}const getPrefs = user => (user.premium ? Right(user): Left(‘not premium‘)) .map(p => user.preferences) .fold( x => defaultPrefs, x => loadPrefs(x) )
const streetName = user => { const address = user.address; if(address) { const street = address.street; if(street) { return street.name; } } return ‘no street‘;}cosnt streetName = user => fromNullable(user.address) .flatMap(address => fromNullable(address.street)) .map(street => street.name) .fold(e => ‘no street‘, n => n)
const concatUniq = (x, ys) => { const found = ys.filter(y => y === x)[0] return found ? ys : ys.concat(x);}const concatUniq = (x, ys) => fromNullable(ys.filter(y => y === x)[0]) // fromNullable needs value .fold(() => ys.concat(x), y => ys)
const wrapExamples = example => { if(example.previewPath){ try { example.preview = fs.readFileSync(example.previewPath) } catch(e) { } return example; }}const readFile = x => tryCatch(() => readFileSync(x));const wrapExample = example => fromNullabel(exampe.previewPath) .flatMap(readFile) .fold(() => example, ex => Object.assign({preview: p}, ex); )
const parseDbUrl = cfg => { try { const c = JSON.parse(cfg); if(c.url) { return c.url.match(/..../) } catch(e) { return null } }}const parseDbUrl = cfg => tryCatch(() => JSON.parse(cfg)) .flatMap(c => fromNullable(c.url)) .fold( e => null, u => u.match(/..../) )
[JS Compse] 4. A collection of Either examples compared to imperative code
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。