File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
src/feature-management-applicationinsights-browser Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 46
46
},
47
47
"dependencies" : {
48
48
"@microsoft/applicationinsights-web" : " ^3.3.2" ,
49
- "@microsoft/feature-management" : " 2.1.0"
49
+ "@microsoft/feature-management" : " 2.1.0" ,
50
+ "@nevware21/ts-utils" : " >= 0.12.5 < 2.x"
50
51
}
51
52
}
52
53
Original file line number Diff line number Diff line change
1
+ // Copyright (c) Microsoft Corporation.
2
+ // Licensed under the MIT license.
3
+
4
+ import { getDocument , strTrim } from "@nevware21/ts-utils" ;
5
+ import { ITargetingContext , ITargetingContextAccessor } from "@microsoft/feature-management" ;
6
+
7
+ const strCookie = "cookie" ;
8
+
9
+ export class DefaultHttpTargetingContextAccessor implements ITargetingContextAccessor {
10
+ #cookieValue: string ;
11
+ #cookieCache: { [ key : string ] : string } | undefined ;
12
+
13
+
14
+ getTargetingContext ( ) : ITargetingContext {
15
+ return { } ;
16
+ }
17
+
18
+ #
19
+ }
You can’t perform that action at this time.
0 commit comments