File: bitOr.js

package info (click to toggle)
node-array-from 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 644 kB
  • sloc: makefile: 2
file content (24 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"use strict";

exports.__esModule = true;
/**
 * @module 1-liners/bitOr
 * 
 * @description
 *
 * Same as `a | b`.
 * 
 * @example
 * 
 * 	var bitOr = require('1-liners/bitOr');
 * 
 * 	bitOr(0, 1); // => 1
 * 	bitOr(1, 1); // => 1
 * 
 */

exports["default"] = function (x, y) {
  return x | y;
};

module.exports = exports["default"];