Skip to content

Commit 6d9b933

Browse files
committed
Using named imports for maintainability
1 parent a05280a commit 6d9b933

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/compute-lines.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,4 +213,4 @@ const computeLineInformation = (
213213
};
214214
};
215215

216-
export default computeLineInformation;
216+
export { computeLineInformation };

src/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import * as PropTypes from 'prop-types';
33
import cn from 'classnames';
44

5-
import computeLines, { LineInformation, DiffInformation, DiffType } from './compute-lines';
5+
import { computeLineInformation, LineInformation, DiffInformation, DiffType } from './compute-lines';
66
import computeStyles, { ReactDiffViewerStylesOverride, ReactDiffViewerStyles } from './styles';
77

88
const m = require('memoize-one');
@@ -399,7 +399,7 @@ class DiffViewer extends React.Component<ReactDiffViewerProps, ReactDiffViewerSt
399399
*/
400400
private renderDiff = (): JSX.Element[] => {
401401
const { oldValue, newValue, splitView } = this.props;
402-
const { lineInformation, diffLines } = computeLines(
402+
const { lineInformation, diffLines } = computeLineInformation(
403403
oldValue,
404404
newValue,
405405
this.props.disableWordDiff,

test/compute-lines-test.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as expect from 'expect';
2-
import computeLines from '../src/compute-lines';
2+
import { computeLineInformation } from '../src/compute-lines';
33

44
describe('Testing compute lines utils', (): void => {
55
it('Should it avoid trailing spaces', (): void => {
@@ -11,7 +11,7 @@ describe('Testing compute lines utils', (): void => {
1111
1212
`;
1313

14-
expect(computeLines(oldCode, newCode))
14+
expect(computeLineInformation(oldCode, newCode))
1515
.toMatchObject({
1616
lineInformation: [
1717
{
@@ -36,7 +36,7 @@ describe('Testing compute lines utils', (): void => {
3636
const newCode = `test
3737
newLine`;
3838

39-
expect(computeLines(oldCode, newCode))
39+
expect(computeLineInformation(oldCode, newCode))
4040
.toMatchObject({
4141
lineInformation: [
4242
{
@@ -69,7 +69,7 @@ describe('Testing compute lines utils', (): void => {
6969
oldLine`;
7070
const newCode = 'test';
7171

72-
expect(computeLines(oldCode, newCode))
72+
expect(computeLineInformation(oldCode, newCode))
7373
.toMatchObject({
7474
lineInformation: [
7575
{
@@ -103,7 +103,7 @@ describe('Testing compute lines utils', (): void => {
103103
const newCode = `test
104104
newLine`;
105105

106-
expect(computeLines(oldCode, newCode, true))
106+
expect(computeLineInformation(oldCode, newCode, true))
107107
.toMatchObject({
108108
lineInformation: [
109109
{
@@ -141,7 +141,7 @@ describe('Testing compute lines utils', (): void => {
141141
const newCode = `test
142142
newLine`;
143143

144-
expect(computeLines(oldCode, newCode))
144+
expect(computeLineInformation(oldCode, newCode))
145145
.toMatchObject({
146146
lineInformation: [
147147
{

0 commit comments

Comments
 (0)