Skip to content

Commit

Permalink
Merge pull request #109 from dhershman1/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
dhershman1 authored Apr 24, 2019
2 parents 016006d + 0c3924b commit 92524aa
Show file tree
Hide file tree
Showing 157 changed files with 2,361 additions and 1,752 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.12.2

### New

- Added `propEq` function which takes a object property value and compares it against a given value to see if it's equal
- Added `notEq` function which checks if the provided values are not equal to each other

### Fixed

- The documentation for `and` should now reflect correctly on the return and params

## v0.12.1

### Fixed
Expand Down
12 changes: 12 additions & 0 deletions dist/kyanite.js
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,11 @@
};
var memoizeWith$1 = _curry2(memoizeWith);

var notEq = function notEq(a, b) {
return complement$1(eq$1(a), b);
};
var notEq$1 = _curry2(notEq);

var or = function or(a, b) {
return a || b;
};
Expand Down Expand Up @@ -1132,6 +1137,11 @@
};
var prop$1 = _curry2(prop);

var propEq = function propEq(key, val, obj) {
return compose$1(eq$1(val), prop$1(key), obj);
};
var propEq$1 = _curry3(propEq);

var props = function props(keys, obj) {
return map$1(function (k) {
return obj[k];
Expand Down Expand Up @@ -1304,6 +1314,7 @@
exports.multiply = multiply$1;
exports.negate = negate;
exports.not = not;
exports.notEq = notEq$1;
exports.nth = nth$1;
exports.omit = omit$1;
exports.on = on$1;
Expand All @@ -1319,6 +1330,7 @@
exports.prepend = prepend$1;
exports.product = product;
exports.prop = prop$1;
exports.propEq = propEq$1;
exports.props = props$1;
exports.range = range$1;
exports.reduce = reduce$1;
Expand Down
2 changes: 1 addition & 1 deletion dist/kyanite.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_chunk.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_concatMap.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_countBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_difference.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_drop.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_dropWhile.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_ensureArray.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_every.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_everyPass.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_filter.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_find.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_findIndex.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_groupBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_insert.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_intersection.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_juxt.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_map.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_max.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_maxBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_min.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_minBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_partition.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_prepend.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_reduceRight.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_reject.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_remove.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_some.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_somePass.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_sort.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_sortBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_sortWith.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_take.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_takeWhile.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_union.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_uniq.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_uniqBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_update.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/array_zip.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_addIndex.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_always.js.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/function_and.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_ap.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_apply.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_ascend.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_ascendBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_both.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_branch.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_complement.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_compose.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_composeP.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_count.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_curry.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_curryN.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_deepEq.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_defaultTo.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_descend.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_descendBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_either.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_encase.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_eq.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_eqBy.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_flip.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_gt.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_gte.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_has.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_identity.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_isEmpty.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_isNil.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_lt.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_lte.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_memoizeWith.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/function_not.js.html

Large diffs are not rendered by default.

108 changes: 108 additions & 0 deletions docs/function_notEq.js.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="utf-8">
<title>function/notEq.js - Documentation</title>

<meta name="description" content="A small library of pure functional utilities to make life easier and data better" />

<meta name="keywords" content="functional, library, javascript, pure, helpers, utils" />
<meta name="keyword" content="functional, library, javascript, pure, helpers, utils" />



<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>

<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>

<label for="nav-trigger" class="overlay"></label>

<nav>

<input type="text" id="nav-search" placeholder="Search" />

<h2><a href="index.html">Home</a></h2><h2><a href="https://github.com/dhershman1/kyanite" target="_blank" class="menu-item" id="repository" >Github repo</a></h2><ul class="nav-list"><h3>Number</h3><li class="nav-item" data-cat="Number"><a href="functions.html#add">add</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#between">between</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#clamp">clamp</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#dec">dec</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#divide">divide</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#factors">factors</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#gcd">gcd</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#inc">inc</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#isEven">isEven</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#isOdd">isOdd</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#isPrime">isPrime</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#isZero">isZero</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#lcm">lcm</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#mean">mean</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#median">median</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#mod">mod</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#multiply">multiply</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#negate">negate</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#pow">pow</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#product">product</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#range">range</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#rem">rem</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#round">round</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#subtract">subtract</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#sum">sum</a></li><li class="nav-item" data-cat="Number"><a href="functions.html#within">within</a></li><h3>Function</h3><li class="nav-item" data-cat="Function"><a href="functions.html#addIndex">addIndex</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#always">always</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#and">and</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#ap">ap</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#apply">apply</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#ascend">ascend</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#ascendBy">ascendBy</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#both">both</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#branch">branch</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#complement">complement</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#compose">compose</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#composeP">composeP</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#count">count</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#curry">curry</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#curryN">curryN</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#deepEq">deepEq</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#defaultTo">defaultTo</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#descend">descend</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#descendBy">descendBy</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#either">either</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#encase">encase</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#eq">eq</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#eqBy">eqBy</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#flip">flip</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#gt">gt</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#gte">gte</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#has">has</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#identity">identity</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#isEmpty">isEmpty</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#isNil">isNil</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#lt">lt</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#lte">lte</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#memoizeWith">memoizeWith</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#not">not</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#notEq">notEq</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#on">on</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#or">or</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#pipe">pipe</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#pipeP">pipeP</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#reduce">reduce</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#reduced">reduced</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#reject">reject</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#size">size</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#type">type</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#unless">unless</a></li><li class="nav-item" data-cat="Function"><a href="functions.html#when">when</a></li><h3>Object</h3><li class="nav-item" data-cat="Object"><a href="functions.html#amend">amend</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#any">any</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#draft">draft</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#height">height</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#omit">omit</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#over">over</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#path">path</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#pathOr">pathOr</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#plan">plan</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#prop">prop</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#propEq">propEq</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#props">props</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#sift">sift</a></li><li class="nav-item" data-cat="Object"><a href="functions.html#whole">whole</a></li><h3>String</h3><li class="nav-item" data-cat="String"><a href="functions.html#capitalize">capitalize</a></li><li class="nav-item" data-cat="String"><a href="functions.html#fuzzySearch">fuzzySearch</a></li><li class="nav-item" data-cat="String"><a href="functions.html#join">join</a></li><li class="nav-item" data-cat="String"><a href="functions.html#match">match</a></li><li class="nav-item" data-cat="String"><a href="functions.html#replace">replace</a></li><li class="nav-item" data-cat="String"><a href="functions.html#split">split</a></li><li class="nav-item" data-cat="String"><a href="functions.html#test">test</a></li><li class="nav-item" data-cat="String"><a href="functions.html#toLower">toLower</a></li><li class="nav-item" data-cat="String"><a href="functions.html#toUpper">toUpper</a></li><li class="nav-item" data-cat="String"><a href="functions.html#trim">trim</a></li><h3>Array</h3><li class="nav-item" data-cat="Array"><a href="functions.html#chunk">chunk</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#concatMap">concatMap</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#countBy">countBy</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#difference">difference</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#drop">drop</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#dropWhile">dropWhile</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#ensureArray">ensureArray</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#every">every</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#everyPass">everyPass</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#filter">filter</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#find">find</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#findIndex">findIndex</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#groupBy">groupBy</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#insert">insert</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#intersection">intersection</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#juxt">juxt</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#length">length</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#map">map</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#max">max</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#maxBy">maxBy</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#min">min</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#minBy">minBy</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#partition">partition</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#prepend">prepend</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#reduceRight">reduceRight</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#remove">remove</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#some">some</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#somePass">somePass</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#sort">sort</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#sortBy">sortBy</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#sortWith">sortWith</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#take">take</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#takeWhile">takeWhile</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#union">union</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#uniq">uniq</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#uniqBy">uniqBy</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#update">update</a></li><li class="nav-item" data-cat="Array"><a href="functions.html#zip">zip</a></li><h3>List</h3><li class="nav-item" data-cat="List"><a href="functions.html#concat">concat</a></li><li class="nav-item" data-cat="List"><a href="functions.html#endsWith">endsWith</a></li><li class="nav-item" data-cat="List"><a href="functions.html#first">first</a></li><li class="nav-item" data-cat="List"><a href="functions.html#includes">includes</a></li><li class="nav-item" data-cat="List"><a href="functions.html#last">last</a></li><li class="nav-item" data-cat="List"><a href="functions.html#nth">nth</a></li><li class="nav-item" data-cat="List"><a href="functions.html#reverse">reverse</a></li><li class="nav-item" data-cat="List"><a href="functions.html#slice">slice</a></li></ul>
</nav>

<div id="main">

<h1 class="page-title">function/notEq.js</h1>







<section>
<article>
<pre class="prettyprint source linenums"><code>import _curry2 from '../_internals/_curry2'
import complement from './complement'
import eq from './eq'

/**
* @name notEq
* @function
* @since v0.12.2
* @category Function
* @sig * -> * -> Boolean
* @description Takes in two values and checks to make sure they're not equal to each other
* @param {Any} a The first value to compare
* @param {Any} b The second value to compare
* @return {Boolean} Whether or not the values provided are equal
* @example
* import { notEq } from 'kyanite'
*
* notEq(1, '1') // => true
* notEq('test', 'Test') // => true
* notEq(2, 2) // => false
*
* // It's also curried
*
* const fn = notEq(1)
*
* fn('1') // => true
* fn(2) // => true
* fn(1) // => false
*/
const notEq = (a, b) => complement(eq(a), b)

export default _curry2(notEq)
</code></pre>
</article>
</section>






</div>

<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>

<script src="scripts/search.js"></script>


</body>
</html>
Loading

0 comments on commit 92524aa

Please sign in to comment.