All files / src String.js

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 2/2
1 2 3 4 5 6 7 8 9 10 11          96x       5x  
import { BaseType } from './base';
import nativeTypeMap from './nativeTypeMap';
 
export default class StringType extends BaseType {
  static isOfType(val) {
    return typeof val === 'string';
  }
}
 
nativeTypeMap.set(String, StringType);