Made enums all constants

This commit is contained in:
Dolan
2017-06-08 02:28:00 +01:00
parent 29a0cd79eb
commit 2dc0287a6b
33 changed files with 62 additions and 62 deletions

View File

@@ -3,7 +3,7 @@ import { Oid } from './oid';
import { Revwalk } from './rev-walk';
export namespace Packbuilder {
enum STAGE {
const enum STAGE {
ADDING_OBJECTS = 0,
DELTAFICATION = 1
}